Skip to content

Commit 0ba8769

Browse files
committed
4.1.0.rc2
1 parent 5f8163c commit 0ba8769

19 files changed

+117
-10
lines changed

dist/echarts-en.common.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -31048,6 +31048,12 @@ function getValueAxisStart(baseAxis, valueAxis, stacked) {
3104831048
* under the License.
3104931049
*/
3105031050

31051+
/*
31052+
* The `scaleLevels` references to d3.js. The use of the source
31053+
* code of this file is also subject to the terms and consitions
31054+
* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
31055+
*/
31056+
3105131057
// [About UTC and local time zone]:
3105231058
// In most cases, `number.parseDate` will treat input data string as local time
3105331059
// (except time zone is specified in time string). And `format.formateTime` returns
@@ -31190,7 +31196,7 @@ each$1(['contain', 'normalize'], function (methodName) {
3119031196
};
3119131197
});
3119231198

31193-
// Steps from d3
31199+
// Steps from d3, see the license statement at the top of this file.
3119431200
var scaleLevels = [
3119531201
// Format interval
3119631202
['hh:mm:ss', ONE_SECOND], // 1s

dist/echarts-en.common.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/echarts-en.js

+38-2
Original file line numberDiff line numberDiff line change
@@ -31141,6 +31141,12 @@ function getValueAxisStart(baseAxis, valueAxis, stacked) {
3114131141
* under the License.
3114231142
*/
3114331143

31144+
/*
31145+
* The `scaleLevels` references to d3.js. The use of the source
31146+
* code of this file is also subject to the terms and consitions
31147+
* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
31148+
*/
31149+
3114431150
// [About UTC and local time zone]:
3114531151
// In most cases, `number.parseDate` will treat input data string as local time
3114631152
// (except time zone is specified in time string). And `format.formateTime` returns
@@ -31283,7 +31289,7 @@ each$1(['contain', 'normalize'], function (methodName) {
3128331289
};
3128431290
});
3128531291

31286-
// Steps from d3
31292+
// Steps from d3, see the license statement at the top of this file.
3128731293
var scaleLevels = [
3128831294
// Format interval
3128931295
['hh:mm:ss', ONE_SECOND], // 1s
@@ -46078,6 +46084,13 @@ SeriesModel.extend({
4607846084
* under the License.
4607946085
*/
4608046086

46087+
/*
46088+
* The tree layout implementation references to d3.js
46089+
* (https://github.com/d3/d3-hierarchy). The use of the source
46090+
* code of this file is also subject to the terms and consitions
46091+
* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
46092+
*/
46093+
4608146094
/**
4608246095
* @file The layout algorithm of node-link tree diagrams. Here we using Reingold-Tilford algorithm to drawing
4608346096
* the tree.
@@ -49537,6 +49550,14 @@ function mapVisual$1(nodeModel, visuals, child, index, mapping, seriesModel) {
4953749550
* under the License.
4953849551
*/
4953949552

49553+
/*
49554+
* The treemap layout implementation references to the treemap
49555+
* layout of d3.js (d3/src/layout/treemap.js in v3). The use of
49556+
* the source code of this file is also subject to the terms
49557+
* and consitions of its license (BSD-3Clause, see
49558+
* <echarts/src/licenses/LICENSE-d3>).
49559+
*/
49560+
4954049561
var mathMax$4 = Math.max;
4954149562
var mathMin$4 = Math.min;
4954249563
var retrieveValue = retrieve;
@@ -49657,7 +49678,8 @@ var treemapLayout = {
4965749678
/**
4965849679
* Layout treemap with squarify algorithm.
4965949680
* @see https://graphics.ethz.ch/teaching/scivis_common/Literature/squarifiedTreeMaps.pdf
49660-
* @see https://github.com/mbostock/d3/blob/master/src/layout/treemap.js
49681+
* The implementation references to the treemap layout of d3.js.
49682+
* See the license statement at the head of this file.
4966149683
*
4966249684
* @protected
4966349685
* @param {module:echarts/data/Tree~TreeNode} node
@@ -52697,6 +52719,13 @@ var circularLayout = function (ecModel) {
5269752719
* under the License.
5269852720
*/
5269952721

52722+
/*
52723+
* The layout implementation references to d3.js. The use of
52724+
* the source code of this file is also subject to the terms
52725+
* and consitions of its license (BSD-3Clause, see
52726+
* <echarts/src/licenses/LICENSE-d3>).
52727+
*/
52728+
5270052729
var scaleAndAdd$2 = scaleAndAdd;
5270152730

5270252731
// function adjacentNode(n, e) {
@@ -57735,6 +57764,13 @@ registerAction({
5773557764
* under the License.
5773657765
*/
5773757766

57767+
/*
57768+
* The implementation references to d3.js. The use of the source
57769+
* code of this file is also subject to the terms and consitions
57770+
* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
57771+
*/
57772+
57773+
5773857774
/**
5773957775
* nest helper used to group by the array.
5774057776
* can specified the keys and sort the keys.

dist/echarts-en.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/echarts-en.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/echarts-en.simple.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -33335,6 +33335,12 @@ function getValueAxisStart(baseAxis, valueAxis, stacked) {
3333533335
* under the License.
3333633336
*/
3333733337

33338+
/*
33339+
* The `scaleLevels` references to d3.js. The use of the source
33340+
* code of this file is also subject to the terms and consitions
33341+
* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
33342+
*/
33343+
3333833344
// [About UTC and local time zone]:
3333933345
// In most cases, `number.parseDate` will treat input data string as local time
3334033346
// (except time zone is specified in time string). And `format.formateTime` returns
@@ -33477,7 +33483,7 @@ each$1(['contain', 'normalize'], function (methodName) {
3347733483
};
3347833484
});
3347933485

33480-
// Steps from d3
33486+
// Steps from d3, see the license statement at the top of this file.
3348133487
var scaleLevels = [
3348233488
// Format interval
3348333489
['hh:mm:ss', ONE_SECOND], // 1s

dist/echarts-en.simple.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/echarts.common.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -31106,6 +31106,12 @@ function getValueAxisStart(baseAxis, valueAxis, stacked) {
3110631106
* under the License.
3110731107
*/
3110831108

31109+
/*
31110+
* The `scaleLevels` references to d3.js. The use of the source
31111+
* code of this file is also subject to the terms and consitions
31112+
* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
31113+
*/
31114+
3110931115
// [About UTC and local time zone]:
3111031116
// In most cases, `number.parseDate` will treat input data string as local time
3111131117
// (except time zone is specified in time string). And `format.formateTime` returns
@@ -31248,7 +31254,7 @@ each$1(['contain', 'normalize'], function (methodName) {
3124831254
};
3124931255
});
3125031256

31251-
// Steps from d3
31257+
// Steps from d3, see the license statement at the top of this file.
3125231258
var scaleLevels = [
3125331259
// Format interval
3125431260
['hh:mm:ss', ONE_SECOND], // 1s

dist/echarts.common.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/echarts.js

+38-2
Original file line numberDiff line numberDiff line change
@@ -31199,6 +31199,12 @@ function getValueAxisStart(baseAxis, valueAxis, stacked) {
3119931199
* under the License.
3120031200
*/
3120131201

31202+
/*
31203+
* The `scaleLevels` references to d3.js. The use of the source
31204+
* code of this file is also subject to the terms and consitions
31205+
* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
31206+
*/
31207+
3120231208
// [About UTC and local time zone]:
3120331209
// In most cases, `number.parseDate` will treat input data string as local time
3120431210
// (except time zone is specified in time string). And `format.formateTime` returns
@@ -31341,7 +31347,7 @@ each$1(['contain', 'normalize'], function (methodName) {
3134131347
};
3134231348
});
3134331349

31344-
// Steps from d3
31350+
// Steps from d3, see the license statement at the top of this file.
3134531351
var scaleLevels = [
3134631352
// Format interval
3134731353
['hh:mm:ss', ONE_SECOND], // 1s
@@ -46136,6 +46142,13 @@ SeriesModel.extend({
4613646142
* under the License.
4613746143
*/
4613846144

46145+
/*
46146+
* The tree layout implementation references to d3.js
46147+
* (https://github.com/d3/d3-hierarchy). The use of the source
46148+
* code of this file is also subject to the terms and consitions
46149+
* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
46150+
*/
46151+
4613946152
/**
4614046153
* @file The layout algorithm of node-link tree diagrams. Here we using Reingold-Tilford algorithm to drawing
4614146154
* the tree.
@@ -49595,6 +49608,14 @@ function mapVisual$1(nodeModel, visuals, child, index, mapping, seriesModel) {
4959549608
* under the License.
4959649609
*/
4959749610

49611+
/*
49612+
* The treemap layout implementation references to the treemap
49613+
* layout of d3.js (d3/src/layout/treemap.js in v3). The use of
49614+
* the source code of this file is also subject to the terms
49615+
* and consitions of its license (BSD-3Clause, see
49616+
* <echarts/src/licenses/LICENSE-d3>).
49617+
*/
49618+
4959849619
var mathMax$4 = Math.max;
4959949620
var mathMin$4 = Math.min;
4960049621
var retrieveValue = retrieve;
@@ -49715,7 +49736,8 @@ var treemapLayout = {
4971549736
/**
4971649737
* Layout treemap with squarify algorithm.
4971749738
* @see https://graphics.ethz.ch/teaching/scivis_common/Literature/squarifiedTreeMaps.pdf
49718-
* @see https://github.com/mbostock/d3/blob/master/src/layout/treemap.js
49739+
* The implementation references to the treemap layout of d3.js.
49740+
* See the license statement at the head of this file.
4971949741
*
4972049742
* @protected
4972149743
* @param {module:echarts/data/Tree~TreeNode} node
@@ -52755,6 +52777,13 @@ var circularLayout = function (ecModel) {
5275552777
* under the License.
5275652778
*/
5275752779

52780+
/*
52781+
* The layout implementation references to d3.js. The use of
52782+
* the source code of this file is also subject to the terms
52783+
* and consitions of its license (BSD-3Clause, see
52784+
* <echarts/src/licenses/LICENSE-d3>).
52785+
*/
52786+
5275852787
var scaleAndAdd$2 = scaleAndAdd;
5275952788

5276052789
// function adjacentNode(n, e) {
@@ -57793,6 +57822,13 @@ registerAction({
5779357822
* under the License.
5779457823
*/
5779557824

57825+
/*
57826+
* The implementation references to d3.js. The use of the source
57827+
* code of this file is also subject to the terms and consitions
57828+
* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
57829+
*/
57830+
57831+
5779657832
/**
5779757833
* nest helper used to group by the array.
5779857834
* can specified the keys and sort the keys.

dist/echarts.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/echarts.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/echarts.simple.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -33393,6 +33393,12 @@ function getValueAxisStart(baseAxis, valueAxis, stacked) {
3339333393
* under the License.
3339433394
*/
3339533395

33396+
/*
33397+
* The `scaleLevels` references to d3.js. The use of the source
33398+
* code of this file is also subject to the terms and consitions
33399+
* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
33400+
*/
33401+
3339633402
// [About UTC and local time zone]:
3339733403
// In most cases, `number.parseDate` will treat input data string as local time
3339833404
// (except time zone is specified in time string). And `format.formateTime` returns
@@ -33535,7 +33541,7 @@ each$1(['contain', 'normalize'], function (methodName) {
3353533541
};
3353633542
});
3353733543

33538-
// Steps from d3
33544+
// Steps from d3, see the license statement at the top of this file.
3353933545
var scaleLevels = [
3354033546
// Format interval
3354133547
['hh:mm:ss', ONE_SECOND], // 1s

dist/echarts.simple.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/extension/bmap.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/extension/dataTool.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.common.js

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* specific language governing permissions and limitations
1818
* under the License.
1919
*/
20+
2021
var _echarts = require("./lib/echarts");
2122

2223
(function () {

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* specific language governing permissions and limitations
1818
* under the License.
1919
*/
20+
2021
var _echarts = require("./lib/echarts");
2122

2223
(function () {

index.simple.js

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* specific language governing permissions and limitations
1818
* under the License.
1919
*/
20+
2021
var _echarts = require("./lib/echarts");
2122

2223
(function () {

0 commit comments

Comments
 (0)