[echarts] branch master updated (6d1f49149 -> dbec96f4a)

2023-02-23 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 6d1f49149 chore: ignore files about 'contributing' when publishing to 
npm (#18301)
 new 9335a76cf fix(sunburst): `radial` rotation label might upside down
 new 3941fc9d2 fix(sunburst): adjust label rotation
 new c206dc33d chore: simplify code
 new dbec96f4a Merge pull request #18240 from susiwen8/#18023

The 9006 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/chart/sunburst/SunburstPiece.ts |   5 +-
 test/sunburst-label.html| 120 
 2 files changed, 123 insertions(+), 2 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated: fix(dataset): object source contains `length` breaks render

2023-02-16 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/master by this push:
 new da29a8d28 fix(dataset): object source contains `length` breaks render
 new 9191ab257 Merge pull request #18276 from susiwen8/18050
da29a8d28 is described below

commit da29a8d28cd096f1efe83006687a91c8501dd722
Author: susiwen8 
AuthorDate: Thu Feb 16 00:13:03 2023 +0800

fix(dataset): object source contains `length` breaks render
---
 src/data/Source.ts |  8 ++--
 test/dataset-category.html | 39 +++
 2 files changed, 41 insertions(+), 6 deletions(-)

diff --git a/src/data/Source.ts b/src/data/Source.ts
index 7e27cc6aa..95a341041 100644
--- a/src/data/Source.ts
+++ b/src/data/Source.ts
@@ -19,7 +19,7 @@
 
 import {
 isTypedArray, HashMap, clone, createHashMap, isArray, isObject, 
isArrayLike,
-hasOwn, assert, each, map, isNumber, isString
+hasOwn, assert, each, map, isNumber, isString, keys
 } from 'zrender/src/core/util';
 import {
 SourceFormat, SeriesLayoutBy, DimensionDefinition,
@@ -405,11 +405,7 @@ function objectRowsCollectDimensions(data: 
OptionSourceDataObjectRows): Dimensio
 let obj;
 while (firstIndex < data.length && !(obj = data[firstIndex++])) {} // 
jshint ignore: line
 if (obj) {
-const dimensions: DimensionDefinitionLoose[] = [];
-each(obj, function (value, key) {
-dimensions.push(key);
-});
-return dimensions;
+return keys(obj);
 }
 }
 
diff --git a/test/dataset-category.html b/test/dataset-category.html
index 175e4d121..6cee1d53f 100644
--- a/test/dataset-category.html
+++ b/test/dataset-category.html
@@ -47,6 +47,7 @@ under the License.
 
 
 
+
 
 
 
@@ -671,7 +672,45 @@ under the License.
 
 
 
+
+require([
+'echarts'
+], function (echarts) {
 
+var option = {
+"dataset": {
+"source": [
+{
+"elevation_above_sea_level": 4,
+"length": 1,
+"width": 4
+}
+]
+},
+
+"xAxis": {
+"type": "value"
+},
+"yAxis": {
+"type": "value"
+},
+"series": [
+{
+"type": "line",
+"encode": {
+"x": "length",
+"y": "elevation_above_sea_level"
+}
+}
+]
+};
+
+testHelper.create(echarts, 'object-source', {
+title: "object source that contains 'length' won't break 
render",
+option: option
+});
+});
+
 
 
 


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: fix(markArea): markArea range in bar series #18130

2023-02-02 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch fix-18130
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 8401d1abedbea13206016898db2e8669b2e781c2
Author: Ovilia 
AuthorDate: Thu Feb 2 18:23:54 2023 +0800

fix(markArea): markArea range in bar series #18130
---
 src/chart/bar/BaseBarSeries.ts |  71 -
 test/bar-markArea.html | 326 -
 2 files changed, 388 insertions(+), 9 deletions(-)

diff --git a/src/chart/bar/BaseBarSeries.ts b/src/chart/bar/BaseBarSeries.ts
index bff11b883..d9349ac2e 100644
--- a/src/chart/bar/BaseBarSeries.ts
+++ b/src/chart/bar/BaseBarSeries.ts
@@ -94,20 +94,77 @@ class BaseBarSeriesModel = BaseBarSeri
 const coordSys = this.coordinateSystem;
 if (coordSys && coordSys.clampData) {
 // PENDING if clamp ?
-const pt = coordSys.dataToPoint(coordSys.clampData(value));
+const clampData = coordSys.clampData(value);
+const pt = coordSys.dataToPoint(clampData);
 if (startingAtTick) {
 each(coordSys.getAxes(), function (axis: Axis2D, idx: number) {
 // If axis type is category, use tick coords instead
 if (axis.type === 'category') {
 const tickCoords = axis.getTicksCoords();
-let tickIdx = coordSys.clampData(value)[idx];
+
+let targetTickId = clampData[idx];
 // The index of rightmost tick of markArea is 1 larger 
than x1/y1 index
-if (dims && (dims[idx] === 'x1' || dims[idx] === 
'y1')) {
-tickIdx += 1;
+const isEnd = dims[idx] === 'x1' || dims[idx] === 'y1';
+if (dims && isEnd) {
+targetTickId += 1;
+}
+
+// The only contains one tick, tickCoords is
+// like [{coord: 0, tickValue: 0}, {coord: 0}]
+// to the length should always be larger than 1
+if (tickCoords.length < 2) {
+return;
+}
+else if (tickCoords.length === 2) {
+// The left value and right value of the axis are
+// the same. coord is 0 in both items. Use the max
+// value of the axis as the coord
+pt[idx] = axis.toGlobalCoord(
+axis.getExtent()[isEnd ? 1 : 0]
+);
+return;
+}
+
+let leftCoord;
+let coord;
+let stepTickValue = 1;
+for (let i = 0; i < tickCoords.length; i++) {
+const tickCoord = tickCoords[i].coord;
+// The last item of tickCoords doesn't contain
+// tickValue
+const tickValue = i === tickCoords.length - 1
+? tickCoords[i - 1].tickValue + stepTickValue
+: tickCoords[i].tickValue;
+if (tickValue === targetTickId) {
+coord = tickCoord;
+break;
+}
+else if (tickValue < targetTickId) {
+leftCoord = tickCoord;
+}
+else if (leftCoord != null && tickValue > 
targetTickId) {
+coord = (tickCoord + leftCoord) / 2;
+break;
+}
+if (i === 1) {
+// Here we assume the step of category axes is
+// the same
+stepTickValue = tickValue - 
tickCoords[0].tickValue;
+}
+}
+if (coord == null) {
+if (!leftCoord) {
+// targetTickId is smaller than all tick ids 
in the
+// visible area, use the leftmost tick coord
+coord = tickCoords[0].coord;
+}
+else if (leftCoord) {
+// targetTickId is larger than all tick ids in 
the
+// visible area, use the rightmost tick coord
+coor

[echarts] branch fix-18130 created (now 8401d1abe)

2023-02-02 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-18130
in repository https://gitbox.apache.org/repos/asf/echarts.git


  at 8401d1abe fix(markArea): markArea range in bar series #18130

This branch includes the following new commits:

 new 8401d1abe fix(markArea): markArea range in bar series #18130

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-handbook] branch master updated: Optimized syntax

2023-02-01 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


The following commit(s) were added to refs/heads/master by this push:
 new 8552ea9  Optimized syntax
 new 09c80bb  Merge pull request #89 from balloon72/patch-2
8552ea9 is described below

commit 8552ea9d32c38289c09af5509bbb4b05ce00c3a8
Author: balloon72 <96562725+balloo...@users.noreply.github.com>
AuthorDate: Mon Jan 30 16:38:09 2023 +0800

Optimized syntax
---
 contents/en/how-to/data/dynamic-data.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/contents/en/how-to/data/dynamic-data.md 
b/contents/en/how-to/data/dynamic-data.md
index bb38aa7..fa5ab54 100644
--- a/contents/en/how-to/data/dynamic-data.md
+++ b/contents/en/how-to/data/dynamic-data.md
@@ -2,7 +2,7 @@
 
 ## Asynchronous Loading
 
-Data in [Getting Started Example](${lang}/get-started) is directly updated by 
using `setOption`. But in many cases, data need to be filled by asynchronous 
loading frequently. `ECharts` can implement asynchronous loading in a simple 
way. You can get data asynchronously through a function such as jQuery and use 
`setOption` to fill in data and configs after the chart initialized.
+Data in [Getting Started Example](${lang}/get-started) is directly updated by 
using `setOption`. But in many cases, the data needs to be filled by 
asynchronous loading frequently. `ECharts` can implement asynchronous loading 
in a simple way. You can get data asynchronously through a function such as 
jQuery and use `setOption` to fill in data and configs after the chart 
initialized.
 
 ```js
 var myChart = echarts.init(document.getElementById('main'));
@@ -106,7 +106,7 @@ Here is the effect:
 
 ECharts was driven by data, change in data will drive changes in the 
presentation of the chart. Therefore, It's surprisingly simple to implement a 
dynamic update.
 
-All data's update was implemented by 
[setOption](${mainSitePath}/api.html#echartsInstance.setOption). You only need 
to fetch the data periodically. ECharts will find the difference between two 
groups of data to use the proper way to choose the animation.
+All data's updates were implemented by 
[setOption](${mainSitePath}/api.html#echartsInstance.setOption). You only need 
to fetch the data periodically. ECharts will find the difference between two 
groups of data to use the proper way to choose the animation.
 
 Check the following example.
 


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-handbook] 01/01: Merge pull request #86 from apache/ssr

2023-01-16 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git

commit 2eb9248e65cfa1c2dcb1991769e6933ff79b631c
Merge: 3bc79cb d3110a8
Author: Wenli Zhang 
AuthorDate: Tue Jan 17 15:46:01 2023 +0800

Merge pull request #86 from apache/ssr

doc: add ssr+csr solution

 contents/en/how-to/cross-platform/server.md | 38 +++--
 contents/zh/how-to/cross-platform/server.md | 38 +++--
 2 files changed, 72 insertions(+), 4 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-handbook] branch master updated (3bc79cb -> 2eb9248)

2023-01-16 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


from 3bc79cb  use window.addEventListener instead of window.onresize
 add 6667967  doc: add ssr+csr solution
 add e9ee0f1  doc: update ssr
 add d3110a8  doc: update typo
 new 2eb9248  Merge pull request #86 from apache/ssr

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 contents/en/how-to/cross-platform/server.md | 38 +++--
 contents/zh/how-to/cross-platform/server.md | 38 +++--
 2 files changed, 72 insertions(+), 4 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-handbook] branch ssr updated (e9ee0f1 -> d3110a8)

2023-01-16 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch ssr
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


from e9ee0f1  doc: update ssr
 add d3110a8  doc: update typo

No new revisions were added by this update.

Summary of changes:
 contents/en/how-to/cross-platform/server.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-handbook] branch ssr updated (6667967 -> e9ee0f1)

2023-01-16 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch ssr
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


from 6667967  doc: add ssr+csr solution
 add e9ee0f1  doc: update ssr

No new revisions were added by this update.

Summary of changes:
 contents/en/how-to/cross-platform/server.md | 6 +++---
 contents/zh/how-to/cross-platform/server.md | 8 
 2 files changed, 7 insertions(+), 7 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-handbook] branch ssr created (now 6667967)

2023-01-16 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch ssr
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


  at 6667967  doc: add ssr+csr solution

This branch includes the following new commits:

 new 6667967  doc: add ssr+csr solution

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-handbook] 01/01: doc: add ssr+csr solution

2023-01-16 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch ssr
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git

commit 6667967e50c9e300fad9905d62dcaf07b466ffe3
Author: Ovilia 
AuthorDate: Tue Jan 17 12:06:41 2023 +0800

doc: add ssr+csr solution
---
 contents/en/how-to/cross-platform/server.md | 38 +++--
 contents/zh/how-to/cross-platform/server.md | 38 +++--
 2 files changed, 72 insertions(+), 4 deletions(-)

diff --git a/contents/en/how-to/cross-platform/server.md 
b/contents/en/how-to/cross-platform/server.md
index 7468720..30b15bf 100644
--- a/contents/en/how-to/cross-platform/server.md
+++ b/contents/en/how-to/cross-platform/server.md
@@ -5,9 +5,18 @@ Normally, Apache EChartsTM renders the chart 
dynamically in the brows
 - Reducing the FCP time and ensuring the chart is displayed immediately.
 - Embedding charts in the environments such as Markdown, PDF that do not 
support scripts.
 
-In these scenarios, ECharts also offers a variety of server-side rendering 
options.
+In these scenarios, ECharts offers both SVG and Canvas rendering solutions.
 
-## Server-Side String based SVG Rendering
+| Solution   | Rendering Result  | Pros  |
+| - | - | - |
+| Serverside SVG Rendering | SVG string | Smaller than Canvas 
images;Vector SVG images are not blurred;Support for initial animation |
+| Serverside Canvas Rendering  | Image   | The image format is available 
for a wider range of scenarios, and is optional for scenarios that do not 
support SVG |
+
+In general, the server-side SVG rendering solution should be preferred, or if 
SVG is not applicable, the Canvas rendering solution can be considered.
+
+Server-side rendering also has some limitations, especially some operations 
related to interaction cannot be supported. Therefore, if you have interaction 
requirements, you can refer to "Server-Side Rendering + Client-Side Secondary 
Rendering" below.
+
+## Server-Side SVG Rendering
 
 If you are using 5.3.0 and newer, we strongly recommend that you use the new 
zero-dependency server-side string based SVG rendering solution introduced in 
5.3.0.
 
@@ -142,3 +151,28 @@ echarts.setPlatformAPI({
 ```
 
 If your are using image from remote, we recommend that you prefetch the image 
via an http request to get `base64` before passing it in as the URL of the 
image, to ensure that the image is loaded when render.
+
+## Server-Side Rendering + Client-Side Secondary Rendering
+
+Features that cannot be supported by server-side rendering include
+
+- Dynamically changing data
+- Highlighting the data item where the mouse is hovered
+- Clicking on a legend to toggle whether the series is displayed or not
+- Moving the mouse to show a tooltip
+- Other interaction-related features
+
+If you have such requirements, you can consider using server-side rendering to 
quickly output the first screen chart, then wait for `echarts.js` to finish 
loading and re-render the same chart on the client side, so that you can 
achieve normal interaction effects and dynamically change the data. Note that 
when rendering on the client side, you should turn on interactive components 
like `tooltip: { show: true }` and turn off the initial animation with 
`animation: 0` (the initial animation  [...]
+
+Here is an example of building a CodeSandbox with SVG for server-side 
rendering and Canvas for client-side rendering. It is recommended to click 
"Open Sandbox" to learn the code implementation.
+
+> If you want to use Canvas for server-side rendering or SVG for client-side 
rendering, it's similar, so I won't go over it again.
+
+https://codesandbox.io/embed/apache-echarts-5-3-ssr-csr-0jvsdu?fontsize=14=1=dark;
+ style="width:100%; height:400px; border:0; border-radius: 4px; 
overflow:hidden;"
+ title="Apache ECharts 5.3 SSR + CSR"
+ allow="accelerometer; ambient-light-sensor; camera; encrypted-media; 
geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; 
xr-spatial-tracking"
+ sandbox="allow-forms allow-modals allow-popups allow-presentation 
allow-same-origin allow-scripts"
+   >
+
+As we can see, from the user experience point of view, there is almost no 
secondary rendering process, and the whole switching effect is very seamless. 
You can also use a library like 
[space-js](https://www.npmjs.com/package/pace-js) to display the loading 
progress bar during the loading of `echarts.js` as in the above example to 
solve the problem of no interactive feedback before the ECharts are fully 
loaded.
diff --git a/contents/zh/how-to/cross-platform/server.md 
b/contents/zh/how-to/cross-platform/server.md
index 0fba4bd..efabf66 100644
--- a/contents/zh/how-to/cross-platform/server.md
+++ b/contents/zh/how-to/cross-platform/server.md
@@ -5,9 +5,18 @@
 - 需要缩短前端

[echarts-doc] branch master updated: doc: add animation options for axes apache/echarts#18153

2023-01-11 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


The following commit(s) were added to refs/heads/master by this push:
 new 7a30c841 doc: add animation options for axes apache/echarts#18153
7a30c841 is described below

commit 7a30c8414fc9eae5b1214693eb57342769fbdc30
Author: Ovilia 
AuthorDate: Thu Jan 12 10:49:00 2023 +0800

doc: add animation options for axes apache/echarts#18153
---
 en/option/component/axis-common.md | 5 -
 zh/option/component/axis-common.md | 5 -
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/en/option/component/axis-common.md 
b/en/option/component/axis-common.md
index c553b655..b0ab413d 100644
--- a/en/option/component/axis-common.md
+++ b/en/option/component/axis-common.md
@@ -716,6 +716,10 @@ axisPointer settings on the axis.
 ) }}
 {{ /if }}
 
+{{ use: partial-animation(
+prefix = ${prefix}
+) }}
+
 
 
 {{ target: partial-axis-interval }}
@@ -908,4 +912,3 @@ xAxis: {
 }
 },
 ```
-
diff --git a/zh/option/component/axis-common.md 
b/zh/option/component/axis-common.md
index 36229a91..ce693a02 100644
--- a/zh/option/component/axis-common.md
+++ b/zh/option/component/axis-common.md
@@ -711,6 +711,10 @@ data: [{
 ) }}
 {{ /if }}
 
+{{ use: partial-animation(
+prefix = ${prefix}
+) }}
+
 
 
 {{ target: partial-axis-interval }}
@@ -904,4 +908,3 @@ xAxis: {
 }
 },
 ```
-


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated: fix(tree): change symbol type. close #17946

2022-12-15 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/master by this push:
 new 4b4a732ae fix(tree): change symbol type. close #17946
 new 6be45ba66 Merge pull request #18070 from ChepteaCatalin/fix-17946
4b4a732ae is described below

commit 4b4a732aea9771e59fc9b1d84ac258dae33949e8
Author: Catalin Cheptea 
AuthorDate: Thu Dec 15 22:43:38 2022 +0200

fix(tree): change symbol type. close #17946
---
 src/chart/tree/TreeSeries.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/chart/tree/TreeSeries.ts b/src/chart/tree/TreeSeries.ts
index 245bf91dc..820c3c99b 100644
--- a/src/chart/tree/TreeSeries.ts
+++ b/src/chart/tree/TreeSeries.ts
@@ -82,7 +82,7 @@ export interface TreeSeriesLeavesOption
 
 export interface TreeSeriesOption extends
 SeriesOption, 
TreeSeriesStateOption,
-SymbolOptionMixin, BoxLayoutOptionMixin, RoamOptionMixin {
+SymbolOptionMixin, BoxLayoutOptionMixin, 
RoamOptionMixin {
 type?: 'tree'
 
 layout?: 'orthogonal' | 'radial'


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated: chore: fix several typos

2022-12-13 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/master by this push:
 new a29290ad7 chore: fix several typos
 new b76eff2b3 Merge pull request #18061 from striezel-stash/several-typos
a29290ad7 is described below

commit a29290ad7748d9e3e864445ab81629c3279187b5
Author: Dirk Stolle 
AuthorDate: Wed Dec 14 01:21:49 2022 +0100

chore: fix several typos
---
 src/component/axisPointer/BaseAxisPointer.ts |  8 
 src/component/axisPointer/axisTrigger.ts |  6 +++---
 src/component/axisPointer/modelHelper.ts |  8 
 src/component/axisPointer/viewHelper.ts  |  2 +-
 src/component/dataZoom/SliderZoomView.ts |  4 ++--
 src/component/helper/BrushController.ts  | 12 ++--
 src/component/helper/BrushTargetManager.ts   |  4 ++--
 src/component/helper/MapDraw.ts  |  8 
 src/component/toolbox/ToolboxView.ts |  4 ++--
 src/component/tooltip/TooltipView.ts |  6 +++---
 src/component/tooltip/seriesFormatTooltip.ts |  4 ++--
 src/component/tooltip/tooltipMarkup.ts   |  4 ++--
 src/component/visualMap/ContinuousModel.ts   |  4 ++--
 src/component/visualMap/ContinuousView.ts|  8 
 src/component/visualMap/PiecewiseModel.ts|  4 ++--
 src/component/visualMap/VisualMapModel.ts|  4 ++--
 16 files changed, 45 insertions(+), 45 deletions(-)

diff --git a/src/component/axisPointer/BaseAxisPointer.ts 
b/src/component/axisPointer/BaseAxisPointer.ts
index 003fa2849..5b91847b1 100644
--- a/src/component/axisPointer/BaseAxisPointer.ts
+++ b/src/component/axisPointer/BaseAxisPointer.ts
@@ -135,7 +135,7 @@ class BaseAxisPointer implements AxisPointer {
 this._axisPointerModel = axisPointerModel;
 this._api = api;
 
-// Optimize: `render` will be called repeatly during mouse move.
+// Optimize: `render` will be called repeatedly during mouse move.
 // So it is power consuming if performing `render` each time,
 // especially on mobile device.
 if (!forceRender
@@ -251,7 +251,7 @@ class BaseAxisPointer implements AxisPointer {
 axisPointerModel: AxisPointerModel,
 api: ExtensionAPI
 ) {
-// Shoule be implemenented by sub-class.
+// Should be implemenented by sub-class.
 }
 
 /**
@@ -360,7 +360,7 @@ class BaseAxisPointer implements AxisPointer {
 cursor: 'move',
 draggable: true,
 onmousemove(e) {
-// Fot mobile devicem, prevent screen slider on the 
button.
+// For mobile device, prevent screen slider on the 
button.
 eventTool.stop(e.event);
 },
 onmousedown: bind(this._onHandleDragMove, this, 0, 0),
@@ -576,4 +576,4 @@ function updateMandatoryProps(
 });
 }
 
-export default BaseAxisPointer;
\ No newline at end of file
+export default BaseAxisPointer;
diff --git a/src/component/axisPointer/axisTrigger.ts 
b/src/component/axisPointer/axisTrigger.ts
index bae5d0938..810108d86 100644
--- a/src/component/axisPointer/axisTrigger.ts
+++ b/src/component/axisPointer/axisTrigger.ts
@@ -425,8 +425,8 @@ function dispatchTooltipActually(
 }
 
 // In most case only one axis (or event one series is used). It is
-// convinient to fetch payload.seriesIndex and payload.dataIndex
-// dirtectly. So put the first seriesIndex and dataIndex of the first
+// convenient to fetch payload.seriesIndex and payload.dataIndex
+// directly. So put the first seriesIndex and dataIndex of the first
 // axis on the payload.
 const sampleItem = ((dataByCoordSys.list[0].dataByAxis[0] || 
{}).seriesDataIndices || [])[0] || {} as DataIndex;
 
@@ -450,7 +450,7 @@ function dispatchHighDownActually(
 api: ExtensionAPI
 ) {
 // FIXME
-// highlight status modification shoule be a stage of main process?
+// highlight status modification should be a stage of main process?
 // (Consider confilct (e.g., legend and axisPointer) and setOption)
 
 const zr = api.getZr();
diff --git a/src/component/axisPointer/modelHelper.ts 
b/src/component/axisPointer/modelHelper.ts
index c991ae0c2..81c856874 100644
--- a/src/component/axisPointer/modelHelper.ts
+++ b/src/component/axisPointer/modelHelper.ts
@@ -130,8 +130,8 @@ function collectAxesInfo(result: CollectionResult, ecModel: 
GlobalModel, api: Ex
 result.coordSysAxesInfo[coordSysKey] = {};
 result.coordSysMap[coordSysKey] = coordSys;
 
-// Set tooltip (like 'cross') is a convienent way to show axisPointer
-// for user. So we enable seting tooltip on coordSys model.
+// Set tooltip (like 'cross') is a convenient way to show axisPointer
+// for user. So we enable setting tooltip on coordSys

[echarts-bot] 01/01: Merge pull request #13 from apache/dependabot/npm_and_yarn/decode-uri-component-0.2.2

2022-12-04 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-bot.git

commit 957395a96740c1c815c8b5a9e167700c0e7162de
Merge: 05d16a4 8c08ef0
Author: Wenli Zhang 
AuthorDate: Mon Dec 5 13:52:19 2022 +0800

Merge pull request #13 from 
apache/dependabot/npm_and_yarn/decode-uri-component-0.2.2

chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2

 package-lock.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-bot] branch master updated (05d16a4 -> 957395a)

2022-12-04 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-bot.git


from 05d16a4  tweak logic
 add 8c08ef0  chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2
 new 957395a  Merge pull request #13 from 
apache/dependabot/npm_and_yarn/decode-uri-component-0.2.2

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 package-lock.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] branch master updated (30783e85 -> 7a426b3e)

2022-12-04 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


from 30783e85 Merge pull request #320 from apache/dev
 add c330d4f8 chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2
 new 7a426b3e Merge pull request #325 from 
apache/dependabot/npm_and_yarn/decode-uri-component-0.2.2

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 package-lock.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] 01/01: Merge pull request #325 from apache/dependabot/npm_and_yarn/decode-uri-component-0.2.2

2022-12-04 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git

commit 7a426b3e4ba221937190715ca584589cd45b233f
Merge: 30783e85 c330d4f8
Author: Wenli Zhang 
AuthorDate: Mon Dec 5 13:51:49 2022 +0800

Merge pull request #325 from 
apache/dependabot/npm_and_yarn/decode-uri-component-0.2.2

chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2

 package-lock.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] branch master updated (db41093e -> 8cfb6cab)

2022-11-30 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


from db41093e Merge pull request #319 from apache/feat-doji
 add 8cfb6cab chore: changelog for `5.4.1` (#318)

No new revisions were added by this update.

Summary of changes:
 en/changelog.md | 29 +
 1 file changed, 29 insertions(+)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] branch master updated (37665834 -> db41093e)

2022-11-30 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


from 37665834 fix(graphic): add missing `opacity` option for graphic 
element style.
 add f5fdfcaa feat(candlestick): add doc for borderColorDoji 
apache/echarts#17717
 new db41093e Merge pull request #319 from apache/feat-doji

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 en/option/series/candlestick.md | 16 ++--
 zh/option/series/candlestick.md | 16 ++--
 2 files changed, 28 insertions(+), 4 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] 01/01: Merge pull request #319 from apache/feat-doji

2022-11-30 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git

commit db41093ed4f21601c0d2bdf86ef0491b052fc363
Merge: 37665834 f5fdfcaa
Author: Wenli Zhang 
AuthorDate: Thu Dec 1 10:26:44 2022 +0800

Merge pull request #319 from apache/feat-doji

feat(candlestick): add doc for borderColorDoji apache/echarts#17717

 en/option/series/candlestick.md | 16 ++--
 zh/option/series/candlestick.md | 16 ++--
 2 files changed, 28 insertions(+), 4 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] 01/01: feat(candlestick): add doc for borderColorDoji apache/echarts#17717

2022-11-30 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch feat-doji
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git

commit f5fdfcaa97096c6e23b79f103f49d33074c053f2
Author: Ovilia 
AuthorDate: Thu Dec 1 10:20:09 2022 +0800

feat(candlestick): add doc for borderColorDoji apache/echarts#17717
---
 en/option/series/candlestick.md | 16 ++--
 zh/option/series/candlestick.md | 16 ++--
 2 files changed, 28 insertions(+), 4 deletions(-)

diff --git a/en/option/series/candlestick.md b/en/option/series/candlestick.md
index 934882e8..44d5cb29 100644
--- a/en/option/series/candlestick.md
+++ b/en/option/series/candlestick.md
@@ -22,7 +22,8 @@ We use red to represent increasing and blue decreasing by 
default. If you want t
 + [series-candlestick.itemStyle.color](~series-candlestick.itemStyle.color): 
fill color for bullish candle stick (namely, increase)
 + [series-candlestick.itemStyle.color0](~series-candlestick.itemStyle.color0): 
fill color for bearish candle stick (namely, decrease)
 + 
[series-candlestick.itemStyle.borderColor](~series-candlestick.itemStyle.borderColor):
 border color for bullish candle stick (namely, increase)
-+ 
[series-candlestick.itemStyle.borderColor0](series-candlestick.itemStyle.borderColor0):
 border color for bearish candle stick (namely, decrease)
++ 
[series-candlestick.itemStyle.borderColor0](~series-candlestick.itemStyle.borderColor0):
 border color for bearish candle stick (namely, decrease)
++ 
[series-candlestick.itemStyle.borderColorDoji](~series-candlestick.itemStyle.borderColorDoji):
 border color for doji (when the open price is the same as the close price)
 
 
 
@@ -334,6 +335,18 @@ Border color of bearish candle stick.
 
 {{ use: partial-color-desc() }}
 
+#${prefix} borderColorDoji(Color) = null
+
+
+
+{{ use: partial-version(
+version = "5.4.1"
+) }}
+
+Border color of doji (when the open price is the same as the close price).
+
+{{ use: partial-color-desc() }}
+
 #${prefix} borderWidth(number) = ${defaultBorderWidth}
 
 
@@ -348,4 +361,3 @@ Border width of candlestick. There is no border when it is 
`0`.
 defaultShadowOffsetX = ${defaultShadowOffsetX},
 defaultShadowOffsetY = ${defaultShadowOffsetY}
 ) }}
-
diff --git a/zh/option/series/candlestick.md b/zh/option/series/candlestick.md
index b08c1e0e..3a61f44f 100644
--- a/zh/option/series/candlestick.md
+++ b/zh/option/series/candlestick.md
@@ -22,7 +22,8 @@
 + 
[series-candlestick.itemStyle.color](~series-candlestick.itemStyle.color):阳线填充色(即『涨』)
 + 
[series-candlestick.itemStyle.color0](~series-candlestick.itemStyle.color0):阴线填充色(即『跌』)
 + 
[series-candlestick.itemStyle.borderColor](~series-candlestick.itemStyle.borderColor):阳线边框色(即『涨』)
-+ 
[series-candlestick.itemStyle.borderColor0](series-candlestick.itemStyle.borderColor0):阴线边框色(即『跌』)
++ 
[series-candlestick.itemStyle.borderColor0](~series-candlestick.itemStyle.borderColor0):阴线边框色(即『跌』)
++ 
[series-candlestick.itemStyle.borderColorDoji](~series-candlestick.itemStyle.borderColorDoji):十字星边框色(即开盘价等于收盘价时候的边框色)
 
 
 
@@ -521,6 +522,18 @@ K 线图的选中状态。开启 
[selectedMode](~series-candlestick.selectedMode
 
 {{ use: partial-color-desc() }}
 
+#${prefix} borderColorDoji(Color) = null
+
+
+
+{{ use: partial-version(
+version = "5.4.1"
+) }}
+
+十字星(开盘价等于收盘价)的描边颜色。
+
+{{ use: partial-color-desc() }}
+
 #${prefix} borderWidth(number) = ${defaultBorderWidth}
 
 
@@ -535,4 +548,3 @@ candlestick 描边线宽。为 0 时无描边。
 defaultShadowOffsetX = ${defaultShadowOffsetX},
 defaultShadowOffsetY = ${defaultShadowOffsetY}
 ) }}
-


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] branch feat-doji created (now f5fdfcaa)

2022-11-30 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch feat-doji
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


  at f5fdfcaa feat(candlestick): add doc for borderColorDoji 
apache/echarts#17717

This branch includes the following new commits:

 new f5fdfcaa feat(candlestick): add doc for borderColorDoji 
apache/echarts#17717

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (f68e1f13c -> 02d11cd10)

2022-11-30 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from f68e1f13c Merge pull request #17963 from 
apache/dependabot/npm_and_yarn/engine.io-3.6.1
 add 4fad60848 fix(polar): polar bar animation should start from r0 rather 
than 0
 new 02d11cd10 Merge pull request #17997 from apache/fix-polar-animation

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/chart/bar/BarView.ts   |   2 +-
 src/chart/sunburst/SunburstPiece.ts|   2 +-
 ...bel-formatter.html => bar-polar-animation.html} | 114 ++---
 test/runTest/actions/__meta__.json |   1 +
 test/runTest/actions/bar-polar-animation.json  |   1 +
 5 files changed, 58 insertions(+), 62 deletions(-)
 copy test/{label-formatter.html => bar-polar-animation.html} (50%)
 create mode 100644 test/runTest/actions/bar-polar-animation.json


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: Merge pull request #17997 from apache/fix-polar-animation

2022-11-30 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 02d11cd10c4be5bca3d7641a1664c51534075d5c
Merge: f68e1f13c 4fad60848
Author: Wenli Zhang 
AuthorDate: Thu Dec 1 09:48:40 2022 +0800

Merge pull request #17997 from apache/fix-polar-animation

fix(polar): polar bar animation should start from r0 rather than 0

 src/chart/bar/BarView.ts  |   2 +-
 src/chart/sunburst/SunburstPiece.ts   |   2 +-
 test/bar-polar-animation.html | 131 ++
 test/runTest/actions/__meta__.json|   1 +
 test/runTest/actions/bar-polar-animation.json |   1 +
 5 files changed, 135 insertions(+), 2 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch fix-polar-animation created (now 4fad60848)

2022-11-30 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-polar-animation
in repository https://gitbox.apache.org/repos/asf/echarts.git


  at 4fad60848 fix(polar): polar bar animation should start from r0 rather 
than 0

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch fix-17980 updated (bd767e20f -> 566743232)

2022-11-30 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-17980
in repository https://gitbox.apache.org/repos/asf/echarts.git


from bd767e20f fix(polar): support borderRadius for polar bars #17980
 add 566743232 fix(polar): forgot to commit a new file

No new revisions were added by this update.

Summary of changes:
 .../helper/sectorHelper.ts}| 34 --
 1 file changed, 18 insertions(+), 16 deletions(-)
 copy src/{processor/negativeDataFilter.ts => chart/helper/sectorHelper.ts} 
(50%)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: fix(polar): support borderRadius for polar bars #17980

2022-11-30 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch fix-17980
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit bd767e20f0fc8ba227e3c430ac529d107ab6fe32
Author: Ovilia 
AuthorDate: Wed Nov 30 16:46:33 2022 +0800

fix(polar): support borderRadius for polar bars #17980
---
 src/chart/bar/BarSeries.ts  |   4 +-
 src/chart/bar/BarView.ts|  23 -
 src/chart/helper/pieHelper.ts   |  41 
 src/chart/pie/PieView.ts|   2 +-
 src/chart/sunburst/SunburstPiece.ts |   2 +-
 test/bar-polar-borderRadius.html| 180 
 6 files changed, 204 insertions(+), 48 deletions(-)

diff --git a/src/chart/bar/BarSeries.ts b/src/chart/bar/BarSeries.ts
index eb838c11f..de03a19ea 100644
--- a/src/chart/bar/BarSeries.ts
+++ b/src/chart/bar/BarSeries.ts
@@ -53,8 +53,8 @@ interface BarStatesMixin {
 }
 
 export interface BarItemStyleOption extends 
ItemStyleOption {
-// Border radius is not supported for bar on polar
-borderRadius?: number | number[]
+// for polar bars, this is used for sector's cornerRadius
+borderRadius?: (number | string)[] | number | string
 }
 export interface BarDataItemOption extends BarStateOption,
 StatesOptionMixin,
diff --git a/src/chart/bar/BarView.ts b/src/chart/bar/BarView.ts
index 0de06c481..346f3d9da 100644
--- a/src/chart/bar/BarView.ts
+++ b/src/chart/bar/BarView.ts
@@ -21,6 +21,8 @@ import Path, {PathProps} from 'zrender/src/graphic/Path';
 import Group from 'zrender/src/graphic/Group';
 import {extend, each, map} from 'zrender/src/core/util';
 import {BuiltinTextPosition} from 'zrender/src/core/types';
+import {SectorProps} from 'zrender/src/graphic/shape/Sector';
+import {RectProps} from 'zrender/src/graphic/shape/Rect';
 import {
 Rect,
 Sector,
@@ -66,6 +68,7 @@ import { warn } from '../../util/log';
 import {createSectorCalculateTextPosition, SectorTextPosition, 
setSectorTextRotation} from '../../label/sectorLabel';
 import { saveOldStyle } from '../../animation/basicTransition';
 import Element from 'zrender/src/Element';
+import { getSectorCornerRadius } from '../helper/sectorHelper';
 
 const mathMax = Math.max;
 const mathMin = Math.min;
@@ -338,7 +341,7 @@ class BarView extends ChartView {
 }
 const bgLayout = getLayout[coord.type](data, newIndex);
 const shape = createBackgroundShape(isHorizontalOrRadial, 
bgLayout, coord);
-updateProps(bgEl, { shape }, animationModel, newIndex);
+updateProps(bgEl, { shape }, 
animationModel, newIndex);
 }
 
 let el = oldData.getItemGraphicEl(oldIndex) as BarPossiblePath;
@@ -971,7 +974,8 @@ function createPolarPositionMapping(isRadial: boolean)
 
 function updateStyle(
 el: BarPossiblePath,
-data: SeriesData, dataIndex: number,
+data: SeriesData,
+dataIndex: number,
 itemModel: Model,
 layout: RectLayout | SectorLayout,
 seriesModel: BarSeriesModel,
@@ -981,7 +985,20 @@ function updateStyle(
 const style = data.getItemVisual(dataIndex, 'style');
 
 if (!isPolar) {
-(el as Rect).setShape('r', itemModel.get(['itemStyle', 
'borderRadius']) || 0);
+const borderRadius = itemModel
+.get(['itemStyle', 'borderRadius']) as number | number[] || 0;
+(el as Rect).setShape('r', borderRadius);
+}
+else if (!seriesModel.get('roundCap')) {
+const sector = el as Sector;
+const sectorShape = (el as Sector).shape;
+const cornerRadius = getSectorCornerRadius(
+itemModel.getModel('itemStyle'),
+sectorShape,
+true
+);
+extend(sectorShape, cornerRadius);
+sector.setShape(sectorShape);
 }
 
 el.useStyle(style);
diff --git a/src/chart/helper/pieHelper.ts b/src/chart/helper/pieHelper.ts
deleted file mode 100644
index e55ded398..0
--- a/src/chart/helper/pieHelper.ts
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
-* Licensed to the Apache Software Foundation (ASF) under one
-* or more contributor license agreements.  See the NOTICE file
-* distributed with this work for additional information
-* regarding copyright ownership.  The ASF licenses this file
-* to you under the Apache License, Version 2.0 (the
-* "License"); you may not use this file except in compliance
-* with the License.  You may obtain a copy of the License at
-*
-*   http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing,
-* software distributed under the License is distributed on an
-* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-* KIND, either express or implied.  See the License for the
-* specific language governing permissions and limitations
-* under the License.
-*/
-
-import type Model from '../../model/Model';
-import type Sector from 'zrender/src/

[echarts] branch fix-17980 created (now bd767e20f)

2022-11-30 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-17980
in repository https://gitbox.apache.org/repos/asf/echarts.git


  at bd767e20f fix(polar): support borderRadius for polar bars #17980

This branch includes the following new commits:

 new bd767e20f fix(polar): support borderRadius for polar bars #17980

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch release updated (b99300b29 -> 89f118a1a)

2022-11-28 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch release
in repository https://gitbox.apache.org/repos/asf/echarts.git


from b99300b29 Merge pull request #17979 from apache/fix-null-check
 new 2a0af12f2 chore: update `zrender`
 new 6c7190631 chore: update package-lock
 new 89f118a1a Merge pull request #17984 from susiwen8/release

The 8966 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 package-lock.json | 15 +++
 package.json  |  2 +-
 2 files changed, 8 insertions(+), 9 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] branch master updated (45df5941 -> 53066df5)

2022-11-28 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


from 45df5941 Merge pull request #314 from 
apache/revert-197-doc-graph-draggable
 add 7a625c81 chore(deps): bump engine.io from 3.6.0 to 3.6.1 in /editor
 new 53066df5 Merge pull request #317 from 
apache/dependabot/npm_and_yarn/editor/engine.io-3.6.1

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 editor/package-lock.json | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-wordcloud-generator] 01/01: Merge pull request #1 from apache/dependabot/npm_and_yarn/vite-2.9.13

2022-11-28 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/echarts-wordcloud-generator.git

commit 3818a5f1926d2b02db76b2eeedf0235e1ff79a50
Merge: 7470f43 524d8af
Author: Wenli Zhang 
AuthorDate: Mon Nov 28 18:04:48 2022 +0800

Merge pull request #1 from apache/dependabot/npm_and_yarn/vite-2.9.13

build(deps-dev): bump vite from 2.5.10 to 2.9.13

 package-lock.json | 979 +-
 package.json  |   2 +-
 2 files changed, 826 insertions(+), 155 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] 01/01: Merge pull request #317 from apache/dependabot/npm_and_yarn/editor/engine.io-3.6.1

2022-11-28 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git

commit 53066df5af739cc75d2278dfc9b60fd47ccf2c5f
Merge: 45df5941 7a625c81
Author: Wenli Zhang 
AuthorDate: Mon Nov 28 18:05:48 2022 +0800

Merge pull request #317 from 
apache/dependabot/npm_and_yarn/editor/engine.io-3.6.1

chore(deps): bump engine.io from 3.6.0 to 3.6.1 in /editor

 editor/package-lock.json | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-wordcloud-generator] branch master updated (7470f43 -> 3818a5f)

2022-11-28 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/echarts-wordcloud-generator.git


from 7470f43  feat: finish chart logic
 add 524d8af  build(deps-dev): bump vite from 2.5.10 to 2.9.13
 new 3818a5f  Merge pull request #1 from 
apache/dependabot/npm_and_yarn/vite-2.9.13

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 package-lock.json | 979 +-
 package.json  |   2 +-
 2 files changed, 826 insertions(+), 155 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (cb722aeca -> f68e1f13c)

2022-11-24 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from cb722aeca Merge pull request #17934 from apache/fix-datazoom
 add c33d293d6 chore(deps): bump engine.io from 3.6.0 to 3.6.1
 add f68e1f13c Merge pull request #17963 from 
apache/dependabot/npm_and_yarn/engine.io-3.6.1

No new revisions were added by this update.

Summary of changes:
 package-lock.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch fix-17198 updated (85b8524cc -> eda1b9f98)

2022-11-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-17198
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 85b8524cc Merge branch 'master' into fix-17198
 add 3034443cf fix(time): consider padding when check time axis overlap
 add eda1b9f98 feat(time): support formatterMinUnit and reduce day 
approximate interval

No new revisions were added by this update.

Summary of changes:
 src/coord/axisCommonTypes.ts  |   7 ++-
 src/coord/axisDefault.ts  |   3 -
 src/coord/axisHelper.ts   |   5 +-
 src/coord/axisTickLabelBuilder.ts |  12 ++--
 src/scale/Time.ts |  80 ++--
 src/util/time.ts  |  34 ---
 src/util/types.ts |   2 +-
 test/timeScale-formatter.html | 124 +-
 test/timeScale2.html  |   3 +-
 9 files changed, 177 insertions(+), 93 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch fix-17198 updated (0c594936a -> 85b8524cc)

2022-11-21 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-17198
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 0c594936a fix(axis): add time ticks with larger levels first
 add 731362be0 chore(workflow): close stale issues as not planned rather 
than completed. [ci skip]
 add 89d57f21b Merge pull request #17304 from apache/stale-close-reason
 add 70b10e198 fix(custom): fix potential NPE when applying leave 
transition.
 add 64a86ba3e Merge pull request #17308 from apache/fix-custom
 add 8951f4199 chore: upgrade stale action to v5
 add 2d7d59c0a Merge pull request #17317 from apache/fix-stale-bot
 add 11f488c07 fix(axis): fix axis symbol is not reverted when axis is 
reverse.
 add 2f13981a7 Merge pull request #17329 from apache/fix/axis-line-symbol
 add 131774302 fix(visualMap): fix the indicator doesn't show when hovering 
on map label.
 add 71bdec63c chore: fix some typos
 add 2f29323e1 fix(visualMap): fix wrong type of ecData.
 add add11459e Merge pull request #17346 from 
apache/fix/visualMap-label-indicator
 add 1822053ea fix(type): add missing type `number` to `emphasis.scale` of 
scatter/line/graph series.
 add 6e3efd8fb style: fix typo of `RoamPayload`.
 add 65d867e2e Merge pull request #17390 from apache/fix/symbol-scale-types
 add a214eda00 单轴反向失效问题修复
 add 8cdcc7daf Merge pull request #17411 from 
wind108369/bugfix-single-inverse
 add 28baad87b chore(deps-dev): bump terser from 5.3.8 to 5.14.2
 add 178ec6fbd Merge pull request #17407 from 
apache/dependabot/npm_and_yarn/terser-5.14.2
 add d08a58f35 style: spelling mistakes
 add c7a8547ba style: spelling mistakes
 add 6a261fb79 style: spelling mistakes
 add 800fccaae Merge pull request #17383 from ZXYT/style-spelling-mistakes
 add d5ee24d75 fix(pie): fix `labelLine` may not be hidden when 
`minShowLabelRadian` is specified, resolves #17013.
 add 67afcbd2c Merge pull request #17412 from apache/fix-pie-labelLine
 add 749b64e94 fix(bar-race): provide subPixelOptimize option to solve 
#14679
 add 52d89e7c8 test(bar-race): update test
 add 5470effe5 feat(axis): set subPixelOptimize to be false during animation
 add 979654c46 fix(axis): remove unnecessary files
 add 466d08f41 fix(axis): when update for the first time, make sure done is 
called
 add 1a1575494 fix(subpixel): set animation with subpixel optimization
 add bc4ee6c95 fix(custom): fix elements may not be removed after updates 
#17333
 add 22c821823 fix(custom): apply leave transition and add more comments
 add ee3b8357c test(custom): add a test case with {} that should preserve 
child
 add fc43e0ac1 test(custom): add a test case
 add 44e650e3b fix(custom): fix the case for element after the null child
 add 8fc48c727 fix(custom): ignore element when renderItem returns a group 
with null elements
 add 09e0c801a test(custom): update test case for custom update
 add d9d00b89b Merge branch 'master' into fix-17333
 add c58437740 Merge pull request #17349 from apache/fix-17333
 add c76c297e6 fix(symbol): fix `emphasis.scale` can't be reset and 
specified value may not be respect.
 add bffad00b2 test(symbol): add test case for `emphasis.scale`
 add 4ed662984 test(vrt): fix changing value of select via js doesn't 
trigger `change` event.
 add 8294147a8 fix(symbol): remove unused import.
 add 8e4b5f075 Merge pull request #17442 from 
apache/fix/symbol-emphasis-scale
 add 715e1daee fix(custom): set ignore only if old child exists (#17450)
 add 59e180ec0 chore: fix wrong imports from `echarts.all`
 add e3c8e3cea chore: fix wrong imports from `echarts.all`
 add 074aa815e Merge pull request #17452 from apache/fix-import
 add 3a6c0979b 优化饼图性能
 add 77ee2a1cc test(pie): tweak pie-percent case - add time log, 
percentPrecision & label formatter.
 add d2746afba test(pie): fix test case pie3.html
 add c076a0ce6 Merge pull request #17275 from 
wind108369/improve-pie-performance
 add 08eb9a87e fix(theme): fix the abandoned normal level in the theme 
file. close #17473
 add 1e7f3b875 fix(theme):  move the label block to the outside.
 add abd40cc02 Merge pull request #17482 from Liangism/fix-17473
 add ef3e28fed feat(gauge): axisLabel support rotate like sunburst. close 
15944
 add a29d37c29 Merge pull request #16985 from MeetzhDing/fix-15944
 add f21ec1d29 fix: sliderZoom in candlestick dataset error
 add 63e05ae14 Merge pull request #17237 from jiawulin001/issue#17228
 add c885e6503 fix(log): fix log axis breaks a single data whose log value 
is negative #13154
 add 4bf7f4d56 fix(log): cache base variable
 add 62ebcb915 Merge pull request #17322 from apache/fix-13154
 add c1b677597 feat(pie): support specifying coordinate system for pie 
series.
 add a6307826c feat(bmap): sup

[echarts] branch release-dev updated (1acad3895 -> 106907deb)

2022-11-20 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch release-dev
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 1acad3895 release: 5.4.0
 add 7808c95cb chore(stale): issues with milestone TBD should not be marked 
as stale
 add c9147878c chore(stale): exclude all prs with milestones
 add 29a4fe91f Merge pull request #17616 from apache/fix-stale
 add 20134763b fix(timeline): fix chart can't work when axis line is not 
shown.
 add c9e9a022d Merge pull request #17647 from apache/fix-timeline
 add fe0555b0b chore(deps): bump jsdom from 16.4.0 to 16.7.0
 add f51f1feb3 Merge pull request #17282 from 
apache/dependabot/npm_and_yarn/jsdom-16.7.0
 add 4fe4561ea fix: remove legend name duplicate to prevent double inverse 
bug
 add 46cdb2bf1 fix: revert package-lock.json
 add 56a989b03 Merge pull request #17510 from 
caiwukun/fix_legend_name_duplicate_removal
 add 10a8cd111 chore(deps): bump validator and @microsoft/api-extractor
 add 9a1a486eb Merge pull request #17684 from 
apache/dependabot/npm_and_yarn/validator-and-microsoft/api-extractor-13.7.0
 add dc8f361f6 chore(deps): bump shelljs and jshint
 add 878e29455 Merge pull request #17683 from 
apache/dependabot/npm_and_yarn/shelljs-and-jshint--removed
 add 59c206c53 chore(lint): enforce consistent spacing after comment starts
 add 9c007664e Merge pull request #17606 from apache/fix-lint
 add a051e30b6 fix: markArea of bar series now covers whole category
 add 27c69b01e fix lint error
 add 8b8e1662b Merge branch 'master' of https://github.com/apache/echarts 
into issue#17021
 add 6dbd5df64 New testcase added
 add b47d05673 fix: markPoint now can show normally
 add 5186308c1 fix lint error
 add 70db7c6fc chore: resolve conflict
 add 583711e95 Merge pull request #17098 from jiawulin001/issue#17021
 add 6347c2c3e Merge pull request #17645 from apache/release-dev
 add 3ca9e32a9 Merge pull request #17696 from apache/release
 add bc32dc4e2 style(lint): fix spacing issues
 add 080bdeb99 fix(boxplot): remove empty `boxplotVisual`.
 add 14521df42 fix(chart): remove unused imports.
 add f98cbabc5 chore(workflow): add diff filter
 add c40ebbf6d Merge pull request #17695 from apache/fix-lint
 add 0d58d5a82 docs(extension/bmap): improve documentation of bmap 
extension.
 add 9bbdb2224 Merge pull request #17694 from apache/docs/extension-bmap
 add 81cbfcbff test(gauge): add reproduce of #17663
 add e4fbb582d fix(gauge): add sectors in the order of the 'clockwise' 
option
 add 204a04c4f refactor(treemap): replace Array.forEach with each
 add 213f7ebd8 Merge pull request #17691 from ZeekoZhu/echarts-17633
 add 91382c21a fix(pie): fix a NPE of `labelLine` when `minShowLabelRadian` 
is set.
 add 81321a63a Merge pull request #17715 from apache/fix-pie
 add 96f859c92 fix: #17667 EChartsInitOpts type error about height and width
 add db0f92abd Merge pull request #17727 from MainHou/master
 add 049533132 chore: fix some typos
 add a80fec3f8 fix(pie): fix percent isn't updated when the legend is 
changed
 add 8c8a1a2b8 refactor(pie): mount `seats` on data inner
 add a840d4639 Merge pull request #17734 from apache/fix/pie-percent
 add e79b4d40a Fix spelling mistake 'unkown' to 'unknown'
 add 672c7240b Merge pull request #17750 from 
mountainash/fix/unkown-spelling
 add d7ff8c564 chore: update deprecated nodejs v12 in favor of v16 and 
update action dependency version.
 add c61494fcf Merge pull request #17764 from apache/action-node-version
 add 069b69295 fix: incorrect dataGroupId for old data items in 
universalTransition (#17559)
 add 3f093f715 feat(sankey): `sankey` support `edgeLabel`
 add ed36fbd8f feat(sankey): set edge style to sankeyVisual
 add 69ec4c85d Merge branch 'master' into 7233
 add 1a23b9da6 feat(sankey): `edgeLabel` only supports `inside`
 add 79dffe615 Merge pull request #16767 from susiwen8/7233
 add 28812d168 chore: fix some typos
 add 788e09112 Merge pull request #17776 from striezel-stash/fix-typos
 add 728cf4e81 feat(candlestick): provide borderColorDoji option for custom 
doji color
 add 004c3fa90 Merge pull request #17717 from apache/fix-11042
 add 5cdbdd2de chore: fix a few typos
 add 06ccd5c3d Merge pull request #17782 from striezel-stash/fix-typos
 add 5309444d6 chore(workflow): always install the latest nightly version 
of zrender when publishing nightly echarts
 add cd7ec4cc6 fix(nightly-build): update echarts & zrender version to real 
nightly version
 add 5d6910f30 Merge pull request #17779 from apache/nightly-build
 add 81cf1548a fix(i18n): language code for Ukrainian is UK, not UA
 add 053f84c78 Merge pull request #17800 from 
striezel-stash/i18n-ukrainian-language-code
 add 52673918f fix(i18n): language 

[echarts] 01/01: fix(stack): revert pr #17809

2022-11-20 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch release-dev
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 106907deb1ccc8975e14d5016a71bf3dee659642
Author: Ovilia 
AuthorDate: Mon Nov 21 14:45:07 2022 +0800

fix(stack): revert pr #17809
---
 src/processor/dataStack.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/processor/dataStack.ts b/src/processor/dataStack.ts
index fb0815426..824e63059 100644
--- a/src/processor/dataStack.ts
+++ b/src/processor/dataStack.ts
@@ -131,8 +131,8 @@ function calculateStack(stackInfoList: StackInfo[]) {
 stackStrategy === 'all' // single stack group
 || (stackStrategy === 'positive' && val > 0)
 || (stackStrategy === 'negative' && val < 0)
-|| (stackStrategy === 'samesign' && sum > 0 && val > 
0) // All positive stack
-|| (stackStrategy === 'samesign' && sum < 0 && val < 
0) // All negative stack
+|| (stackStrategy === 'samesign' && sum >= 0 && val > 
0) // All positive stack
+|| (stackStrategy === 'samesign' && sum <= 0 && val < 
0) // All negative stack
 ) {
 // The sum has to be very small to be affected by the
 // floating arithmetic problem. An incorrect result 
will probably


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated: chore: fix some typos

2022-11-09 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/master by this push:
 new 1ed2b93c3 chore: fix some typos
 new 7bddbe583 Merge pull request #17896 from striezel-stash/fix-some-typos
1ed2b93c3 is described below

commit 1ed2b93c319759b6d42a107fe566590e71d27056
Author: Dirk Stolle 
AuthorDate: Wed Nov 9 23:11:13 2022 +0100

chore: fix some typos
---
 src/data/Source.ts|  2 +-
 src/label/labelGuideHelper.ts |  4 ++--
 src/label/labelStyle.ts   |  2 +-
 src/util/ECEventProcessor.ts  |  2 +-
 src/util/KDTree.ts|  8 
 src/util/clazz.ts | 10 +-
 src/util/conditionalExpression.ts | 12 ++--
 src/util/decal.ts |  6 +++---
 src/util/format.ts|  2 +-
 src/util/graphic.ts   | 10 +-
 src/util/layout.ts|  8 
 src/util/model.ts | 30 +++---
 src/util/number.ts| 16 
 src/util/states.ts| 10 +-
 src/util/styleCompat.ts   | 12 ++--
 src/util/types.ts |  4 ++--
 16 files changed, 69 insertions(+), 69 deletions(-)

diff --git a/src/data/Source.ts b/src/data/Source.ts
index a530a5081..a5783525a 100644
--- a/src/data/Source.ts
+++ b/src/data/Source.ts
@@ -319,7 +319,7 @@ function determineSourceDimensions(
 let dimensionsDetectedCount;
 let startIndex: number;
 
-// PEDING: could data be null/undefined here?
+// PENDING: Could data be null/undefined here?
 // currently, if `dataset.source` not specified, error thrown.
 // if `series.data` not specified, nothing rendered without error thrown.
 // Should test these cases.
diff --git a/src/label/labelGuideHelper.ts b/src/label/labelGuideHelper.ts
index 13008a764..fdb70665e 100644
--- a/src/label/labelGuideHelper.ts
+++ b/src/label/labelGuideHelper.ts
@@ -321,7 +321,7 @@ function nearestPointOnPath(pt: Point, path: PathProxy, 
out: Point) {
 return minDist;
 }
 
-// Temporal varible for intermediate usage.
+// Temporal variable for intermediate usage.
 const pt0 = new Point();
 const pt1 = new Point();
 const pt2 = new Point();
@@ -673,4 +673,4 @@ export function getLabelLineStatesModels
 statesModels[stateName] = itemModel.getModel([stateName, 
labelLineName]);
 }
 return statesModels;
-}
\ No newline at end of file
+}
diff --git a/src/label/labelStyle.ts b/src/label/labelStyle.ts
index 622d574be..007f080c4 100644
--- a/src/label/labelStyle.ts
+++ b/src/label/labelStyle.ts
@@ -263,7 +263,7 @@ function setLabelStyle(
 
 // PENDING: if there is many requirements that emphasis position
 // need to be different from normal position, we might consider
-// auto slient is those cases.
+// auto silent is those cases.
 textContent.silent = !!normalModel.getShallow('silent');
 // Keep x and y
 if (textContent.style.x != null) {
diff --git a/src/util/ECEventProcessor.ts b/src/util/ECEventProcessor.ts
index 3b1e20e08..a0d8e91a2 100644
--- a/src/util/ECEventProcessor.ts
+++ b/src/util/ECEventProcessor.ts
@@ -145,7 +145,7 @@ export class ECEventProcessor implements EventProcessor {
 }
 
 afterTrigger() {
-// Make sure the eventInfo wont be used in next trigger.
+// Make sure the eventInfo won't be used in next trigger.
 this.eventInfo = null;
 }
 };
diff --git a/src/util/KDTree.ts b/src/util/KDTree.ts
index e769acbf0..0f521b04a 100644
--- a/src/util/KDTree.ts
+++ b/src/util/KDTree.ts
@@ -42,10 +42,10 @@ class KDTreeNode {
  * @constructor
  * @alias module:echarts/data/KDTree
  * @param {Array} points List of points.
- * each point needs an array property to repesent the actual data
+ * each point needs an array property to represent the actual data
  * @param {Number} [dimension]
  *Point dimension.
- *Default will use the first point's length as dimensiont
+ *Default will use the first point's length as dimension.
  */
 
 class KDTree {
@@ -76,7 +76,7 @@ class KDTree {
 }
 
 /**
- * Resursively build the tree
+ * Recursively build the tree.
  */
 private _buildTree(points: T[], left: number, right: number, axis: 
number): KDTreeNode {
 if (right < left) {
@@ -284,4 +284,4 @@ class KDTree {
 }
 
 
-export default KDTree;
\ No newline at end of file
+export default KDTree;
diff --git a/src/util/clazz.ts b/src/util/clazz.ts
index b340fdb62..06249ab0b 100644
--- a/src/util/clazz.ts
+++ b/src/util/clazz.ts
@@ -185,12 +185,12 @@ export function enableClassCheck(target: 
CheckableConstructor): void {
 };
 }
 
-// superCall should have class info, which can not be fetch from 'this'.
+// superCall should have class info, which 

[echarts] branch fix-17141 updated (a55ef1a8f -> 63f0e7531)

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-17141
in repository https://gitbox.apache.org/repos/asf/echarts.git


from a55ef1a8f Merge branch 'master' into fix-17141
 add de889143f test: update test case
 add 731362be0 chore(workflow): close stale issues as not planned rather 
than completed. [ci skip]
 add 89d57f21b Merge pull request #17304 from apache/stale-close-reason
 add 70b10e198 fix(custom): fix potential NPE when applying leave 
transition.
 add 64a86ba3e Merge pull request #17308 from apache/fix-custom
 add 8951f4199 chore: upgrade stale action to v5
 add 2d7d59c0a Merge pull request #17317 from apache/fix-stale-bot
 add 11f488c07 fix(axis): fix axis symbol is not reverted when axis is 
reverse.
 add 2f13981a7 Merge pull request #17329 from apache/fix/axis-line-symbol
 add 131774302 fix(visualMap): fix the indicator doesn't show when hovering 
on map label.
 add 71bdec63c chore: fix some typos
 add 2f29323e1 fix(visualMap): fix wrong type of ecData.
 add add11459e Merge pull request #17346 from 
apache/fix/visualMap-label-indicator
 add 1822053ea fix(type): add missing type `number` to `emphasis.scale` of 
scatter/line/graph series.
 add 6e3efd8fb style: fix typo of `RoamPayload`.
 add 65d867e2e Merge pull request #17390 from apache/fix/symbol-scale-types
 add a214eda00 单轴反向失效问题修复
 add 8cdcc7daf Merge pull request #17411 from 
wind108369/bugfix-single-inverse
 add 28baad87b chore(deps-dev): bump terser from 5.3.8 to 5.14.2
 add 178ec6fbd Merge pull request #17407 from 
apache/dependabot/npm_and_yarn/terser-5.14.2
 add d08a58f35 style: spelling mistakes
 add c7a8547ba style: spelling mistakes
 add 6a261fb79 style: spelling mistakes
 add 800fccaae Merge pull request #17383 from ZXYT/style-spelling-mistakes
 add d5ee24d75 fix(pie): fix `labelLine` may not be hidden when 
`minShowLabelRadian` is specified, resolves #17013.
 add 67afcbd2c Merge pull request #17412 from apache/fix-pie-labelLine
 add 749b64e94 fix(bar-race): provide subPixelOptimize option to solve 
#14679
 add 52d89e7c8 test(bar-race): update test
 add 5470effe5 feat(axis): set subPixelOptimize to be false during animation
 add 979654c46 fix(axis): remove unnecessary files
 add 466d08f41 fix(axis): when update for the first time, make sure done is 
called
 add 1a1575494 fix(subpixel): set animation with subpixel optimization
 add bc4ee6c95 fix(custom): fix elements may not be removed after updates 
#17333
 add 22c821823 fix(custom): apply leave transition and add more comments
 add ee3b8357c test(custom): add a test case with {} that should preserve 
child
 add fc43e0ac1 test(custom): add a test case
 add 44e650e3b fix(custom): fix the case for element after the null child
 add 8fc48c727 fix(custom): ignore element when renderItem returns a group 
with null elements
 add 09e0c801a test(custom): update test case for custom update
 add d9d00b89b Merge branch 'master' into fix-17333
 add c58437740 Merge pull request #17349 from apache/fix-17333
 add c76c297e6 fix(symbol): fix `emphasis.scale` can't be reset and 
specified value may not be respect.
 add bffad00b2 test(symbol): add test case for `emphasis.scale`
 add 4ed662984 test(vrt): fix changing value of select via js doesn't 
trigger `change` event.
 add 8294147a8 fix(symbol): remove unused import.
 add 8e4b5f075 Merge pull request #17442 from 
apache/fix/symbol-emphasis-scale
 add 715e1daee fix(custom): set ignore only if old child exists (#17450)
 add 59e180ec0 chore: fix wrong imports from `echarts.all`
 add e3c8e3cea chore: fix wrong imports from `echarts.all`
 add 074aa815e Merge pull request #17452 from apache/fix-import
 add 3a6c0979b 优化饼图性能
 add 77ee2a1cc test(pie): tweak pie-percent case - add time log, 
percentPrecision & label formatter.
 add d2746afba test(pie): fix test case pie3.html
 add c076a0ce6 Merge pull request #17275 from 
wind108369/improve-pie-performance
 add 08eb9a87e fix(theme): fix the abandoned normal level in the theme 
file. close #17473
 add 1e7f3b875 fix(theme):  move the label block to the outside.
 add abd40cc02 Merge pull request #17482 from Liangism/fix-17473
 add ef3e28fed feat(gauge): axisLabel support rotate like sunburst. close 
15944
 add a29d37c29 Merge pull request #16985 from MeetzhDing/fix-15944
 add f21ec1d29 fix: sliderZoom in candlestick dataset error
 add 63e05ae14 Merge pull request #17237 from jiawulin001/issue#17228
 add c885e6503 fix(log): fix log axis breaks a single data whose log value 
is negative #13154
 add 4bf7f4d56 fix(log): cache base variable
 add 62ebcb915 Merge pull request #17322 from apache/fix-13154
 add c1b677597 feat(pie): support specifying coordinate system for pie 
series.
 add a6307

[echarts] 01/01: Merge pull request #17887 from apache/fix/code-style-17098

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 7fe9b73516fef1e3d0d64100cbfda995a8d73f0d
Merge: 0f149dc89 63dd98acf
Author: Wenli Zhang 
AuthorDate: Tue Nov 8 14:40:43 2022 +0800

Merge pull request #17887 from apache/fix/code-style-17098

style: fix code style flaw and remove unnecessary default parameter.

 src/chart/bar/BaseBarSeries.ts   |   6 +-
 src/component/marker/MarkAreaView.ts |   2 +-
 src/model/Series.ts  |   3 +-
 test/bar-markArea.html   | 144 ---
 4 files changed, 75 insertions(+), 80 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (0f149dc89 -> 7fe9b7351)

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 0f149dc89 chore: start a local server for testing when run dev #17868 
(#17882)
 add 63dd98acf style: fix code style flaw and remove unnecessary default 
parameter. (#17098)
 new 7fe9b7351 Merge pull request #17887 from apache/fix/code-style-17098

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/chart/bar/BaseBarSeries.ts   |   6 +-
 src/component/marker/MarkAreaView.ts |   2 +-
 src/model/Series.ts  |   3 +-
 test/bar-markArea.html   | 144 ---
 4 files changed, 75 insertions(+), 80 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated: chore: start a local server for testing when run dev #17868 (#17882)

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/master by this push:
 new 0f149dc89 chore: start a local server for testing when run dev #17868 
(#17882)
0f149dc89 is described below

commit 0f149dc89cfc57200daac015861b7cc7029a85de
Author: Wenli Zhang 
AuthorDate: Tue Nov 8 12:06:22 2022 +0800

chore: start a local server for testing when run dev #17868 (#17882)
---
 README.md| 3 +++
 package.json | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 8c98532b3..78472efa7 100644
--- a/README.md
+++ b/README.md
@@ -45,6 +45,9 @@ Execute the instructions in the root directory of the echarts:
 npm install
 
 # Rebuild source code immediately in watch mode when changing the source code.
+# It opens the `./test` directory and you may open `-cases.html` to get the 
list
+# of all test cases.
+# If you wish to create a test case, run `npm run mktest:help` to learn more.
 npm run dev
 
 # Check correctness of TypeScript code.
diff --git a/package.json b/package.json
index 0e7ea3f84..3bc3365d8 100644
--- a/package.json
+++ b/package.json
@@ -46,7 +46,7 @@
 "build:lib": "node build/build.js --prepublish",
 "build:extension": "node build/build.js --type extension",
 "dev:fast": "node build/build-i18n.js && node build/dev-fast.js",
-"dev": "npm run dev:fast",
+"dev": "npx -y concurrently -n build,server \"npm run dev:fast\" \"npx -y 
http-server -c-1 -s -o test\"",
 "prepublish": "npm run build:lib",
 "release": "npm run build:lib && npm run build:i18n && npm run build && 
npm run build:esm && npm run build:extension",
 "help": "node build/build.js --help",


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch fix-readme updated (38d6354e0 -> dc35df70f)

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-readme
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 38d6354e0 chore: update readme
 add dc35df70f chore: update readme

No new revisions were added by this update.

Summary of changes:
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch fix-readme updated (985903bb5 -> 38d6354e0)

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-readme
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 985903bb5 chore: run npx without prompt installation
 add 38d6354e0 chore: update readme

No new revisions were added by this update.

Summary of changes:
 README.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch fix-readme updated (d6b9b4f0b -> 985903bb5)

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-readme
in repository https://gitbox.apache.org/repos/asf/echarts.git


from d6b9b4f0b chore: run npx without prompt installation
 add 985903bb5 chore: run npx without prompt installation

No new revisions were added by this update.

Summary of changes:
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch fix-readme updated (eaee25399 -> d6b9b4f0b)

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-readme
in repository https://gitbox.apache.org/repos/asf/echarts.git


from eaee25399 chore: update dev script
 add d6b9b4f0b chore: run npx without prompt installation

No new revisions were added by this update.

Summary of changes:
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch fix-readme updated (d10465521 -> eaee25399)

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-readme
in repository https://gitbox.apache.org/repos/asf/echarts.git


from d10465521 chore: start a local server for testing when run dev #17868
 add eaee25399 chore: update dev script

No new revisions were added by this update.

Summary of changes:
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch fix-readme created (now d10465521)

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-readme
in repository https://gitbox.apache.org/repos/asf/echarts.git


  at d10465521 chore: start a local server for testing when run dev #17868

This branch includes the following new commits:

 new d10465521 chore: start a local server for testing when run dev #17868

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: chore: start a local server for testing when run dev #17868

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch fix-readme
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit d104655219f37223f6de3cab285bc2ab1d1d05ad
Author: Ovilia 
AuthorDate: Mon Nov 7 17:09:42 2022 +0800

chore: start a local server for testing when run dev #17868
---
 README.md| 2 ++
 package.json | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 8c98532b3..28deee843 100644
--- a/README.md
+++ b/README.md
@@ -45,6 +45,8 @@ Execute the instructions in the root directory of the echarts:
 npm install
 
 # Rebuild source code immediately in watch mode when changing the source code.
+# It will start a server with './test' at http://127.0.0.1:8080.
+# Open http://127.0.0.1:8080/-cases.html to view the list of test cases.
 npm run dev
 
 # Check correctness of TypeScript code.
diff --git a/package.json b/package.json
index 0e7ea3f84..0fbacd4cb 100644
--- a/package.json
+++ b/package.json
@@ -46,7 +46,7 @@
 "build:lib": "node build/build.js --prepublish",
 "build:extension": "node build/build.js --type extension",
 "dev:fast": "node build/build-i18n.js && node build/dev-fast.js",
-"dev": "npm run dev:fast",
+"dev": "npx http-server -- test & npm run dev:fast",
 "prepublish": "npm run build:lib",
 "release": "npm run build:lib && npm run build:i18n && npm run build && 
npm run build:esm && npm run build:extension",
 "help": "node build/build.js --help",


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: Merge pull request #17876 from apache/fix-heatmap

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit c8d5a07808128839676596669960b74b78312e45
Merge: 84a9de8db 0f86a100b
Author: Wenli Zhang 
AuthorDate: Mon Nov 7 16:39:28 2022 +0800

Merge pull request #17876 from apache/fix-heatmap

fix(heatmap): fix heatmap label may overlap when `dataZoom` is enabled

 src/chart/heatmap/HeatmapView.ts   |   8 ++-
 test/heatmap.html  | 112 -
 test/runTest/actions/__meta__.json |   2 +-
 test/runTest/actions/heatmap.json  |   2 +-
 4 files changed, 118 insertions(+), 6 deletions(-)



-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (84a9de8db -> c8d5a0780)

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 84a9de8db Merge pull request #17875 from apache/fix/tooltip-arrow
 add 0f86a100b fix(heatmap): fix heatmap label may overlap when the 
dataZoom is enabled
 new c8d5a0780 Merge pull request #17876 from apache/fix-heatmap

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/chart/heatmap/HeatmapView.ts   |   8 ++-
 test/heatmap.html  | 112 -
 test/runTest/actions/__meta__.json |   2 +-
 test/runTest/actions/heatmap.json  |   2 +-
 4 files changed, 118 insertions(+), 6 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: Merge pull request #17875 from apache/fix/tooltip-arrow

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 84a9de8db68b2b53d5a7aa8bfd279a496b2bf114
Merge: 273f3ede3 3b20b8252
Author: Wenli Zhang 
AuthorDate: Mon Nov 7 16:33:55 2022 +0800

Merge pull request #17875 from apache/fix/tooltip-arrow

fix(tooltip): fix tooltip arrow may cover the content when border is wide

 src/component/tooltip/TooltipHTMLContent.ts |  2 +-
 test/runTest/actions/__meta__.json  |  1 +
 test/runTest/actions/tooltip-domnode.json   |  1 +
 test/tooltip-domnode.html   | 28 
 4 files changed, 31 insertions(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (273f3ede3 -> 84a9de8db)

2022-11-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 273f3ede3 Merge pull request #17861 from apache/fix/hashmap
 add 3b20b8252 fix(tooltip): fix tooltip arrow may cover the content when 
border is wide.
 new 84a9de8db Merge pull request #17875 from apache/fix/tooltip-arrow

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/component/tooltip/TooltipHTMLContent.ts |  2 +-
 test/runTest/actions/__meta__.json  |  1 +
 test/runTest/actions/tooltip-domnode.json   |  1 +
 test/tooltip-domnode.html   | 28 
 4 files changed, 31 insertions(+), 1 deletion(-)
 create mode 100644 test/runTest/actions/tooltip-domnode.json


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] 01/01: Merge pull request #306 from apache/master

2022-10-29 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch next
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git

commit ae767fee3156557096b46357fef87cfb993125e3
Merge: 039a511a c5a80125
Author: Wenli Zhang 
AuthorDate: Sat Oct 29 22:16:21 2022 +0800

Merge pull request #306 from apache/master

Merge master to next

 .asf.yaml| 5 +-
 build.js | 9 +-
 build/webpack.config.js  | 4 +-
 editor/package-lock.json |   313 +-
 editor/package.json  | 2 +-
 editor/src/store/store.js| 2 +-
 en/api/action.md |15 +-
 en/api/echarts.md|15 +-
 en/api/events.md |68 +-
 en/changelog.md  |   108 +-
 en/option-gl/component/globe.md  | 5 +
 en/option-gl/partial/atmosphere.md   |28 +
 en/option/component/axisPointer.md   | 4 +-
 en/option/component/brush.md | 2 +-
 en/option/component/data-zoom.md | 2 +-
 en/option/component/graphic.md   | 4 +-
 en/option/component/legend.md| 2 +-
 en/option/component/tooltip.md   | 3 +-
 en/option/partial/2d-data.md | 8 +-
 en/option/partial/axisPointer-common.md  | 2 +-
 en/option/partial/coord-sys.md   |48 +
 en/option/partial/icon.md| 2 +-
 en/option/partial/label-rotate-tangential.md |15 +
 en/option/partial/zr-graphic.md  | 6 +-
 en/option/series/boxplot.md  | 2 +-
 en/option/series/candlestick.md  | 2 +-
 en/option/series/effectScatter.md| 2 +-
 en/option/series/gauge.md| 5 +
 en/option/series/line.md | 2 +-
 en/option/series/lines.md| 8 +
 en/option/series/pictorialBar.md | 2 +-
 en/option/series/pie.md  |15 +
 en/option/series/scatter.md  | 2 +-
 en/option/series/sunburst.md |62 +-
 en/option/series/themeRiver.md   | 2 +-
 en/option/series/treemap.md  |23 +-
 en/tutorial/renderer.md  | 2 +-
 package-lock.json| 20319 +++--
 package.json |33 +-
 server.js| 8 +-
 src/App.vue  | 1 +
 src/components/DocContent.vue| 4 +
 src/components/LiveExample.vue   |54 +-
 src/components/SearchResult.vue  | 2 +-
 src/directive/mark.js| 2 +-
 src/i18n.js  | 8 +-
 src/main.js  | 5 +-
 tool/md2json.js  | 2 +-
 zh/api/action.md |15 +-
 zh/api/echarts.md|13 +-
 zh/api/events.md |68 +-
 zh/changelog.md  |36 +-
 zh/option-gl/component/globe.md  | 5 +
 zh/option-gl/partial/atmosphere.md   |28 +
 zh/option/component/axisPointer.md   | 4 +-
 zh/option/component/brush.md | 2 +-
 zh/option/component/calendar.md  | 8 +-
 zh/option/component/data-zoom.md | 4 +-
 zh/option/component/graphic.md   | 4 +-
 zh/option/component/legend.md| 2 +-
 zh/option/component/tooltip.md   | 3 +-
 zh/option/partial/2d-data.md | 8 +-
 zh/option/partial/coord-sys.md   |48 +
 zh/option/partial/icon.md| 2 +-
 zh/option/partial/label-rotate-tangential.md |15 +
 zh/option/partial/zr-graphic.md  | 6 +-
 zh/option/series/boxplot.md  | 2 +-
 zh/option/series/candlestick.md  | 2 +-
 zh/option/series/effectScatter.md| 2 +-
 zh/option/series/gauge.md| 5 +
 zh/option/series/line.md | 2 +-
 zh/option/series/lines.md| 8 +
 zh/option/series/pictorialBar.md | 2 +-
 zh/option/series/pie.md  |15 +
 zh/option/series/scatter.md  | 2 +-
 zh/option/series/sunburst.md |40 +-
 zh/option/series/treemap.md  |21 +-
 zh/tutorial/calendar-example.md  | 8 +-
 78 files changed, 12826 insertions(+), 8793 deletions(-)


-
To unsubscribe, e-mail

[echarts-doc] branch next updated (039a511a -> ae767fee)

2022-10-29 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch next
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


from 039a511a Merge pull request #261 from apache/dev
 add 217aff5f change fake example url
 add a24e60c8 fix: typo of "initial"
 add 4ec97b31 Merge pull request #264 from jiawulin001/typo-'initial'
 add fb2782c6 fix(legend): fix a typo of `inherit`, resolves 
apache/echarts#17248
 add e260b2f2 fix(pie): add missing option `percentPrecision`, resolves 
apache/echarts#15167
 add ffe3e0b5 fix: series-sunburst.nodeClick link target.
 add c3028f7d fix(sunburst): fix worng link to `series-sunburst.nodeClick`
 add 49966f45 fix(sunburst): fix wrong link to series-sunburst.nodeClick
 add 732a24a2 Merge pull request #268 from kylezhang/master
 add d4241766 fix(sunburst): complete the en document of the sunburst 
series.
 add d9f99de4 fix(sunburst): fix option level
 add d2fe776e chore(deps): bump terser from 4.8.0 to 4.8.1 in /editor
 add b0fa28e6 chore(deps): bump terser from 4.7.0 to 4.8.1
 add 88b38eaa doc: add doc for graphroam, georoam, and treeroam
 add a61a3b6b chore(deps): bump moment from 2.29.2 to 2.29.4 in /editor
 add e6fbf51e Merge pull request #275 from 
apache/dependabot/npm_and_yarn/editor/moment-2.29.4
 add 77aa1ef8 chore: update dependencies
 add a259367c fix(build): compress option json & js
 add 318ba2de chore: update dependencies
 add ffcd7758 feat(preview): support redirecting to echarts-example editor 
to edit preview code
 add 48057fd3 enlarge edit button in live preview and improve the style of 
loading mask
 add 3feccb0c add some annotations for `finished` event
 add 38e56263 Replace chinese symbol on data doc page
 add ebfd3512 Merge pull request #282 from MasterOdin/patch-2
 add a884baa8 fix some typos and update links
 add a7549296 doc: update outdated doc
 add 054af810 feat(pie): add `coordinateSystem` option for pie series
 add 1913b728 fix: add missing item for `calendar` coordinate system.
 add 8724589f fix wrong `seriesType` was passed to `partial/coord-sys.md`
 add 91c9ecc6 Merge pull request #286 from apache/feat-pie-coordinateSystem
 add aa1350c7 feat(treemap.breadcrumb.emphasis): add version
 add 9b37769f Merge pull request #288 from apache/treemap-emphasis
 add 5aa5e5c8 Merge pull request #269 from apache/master
 add 687b006a doc: update instruction for custom group being null 
apache/echarts#17349
 add c2739452 fix(custom): update null hints
 add 847e47cc Merge pull request #270 from apache/fix-custom-merge
 add b0de16d3 feat:add 'atmosphere'
 add ab7dc772 fix: delete 'highlight' and 'downplay' from 'events' and 
'action'
 add c899e497 Revert "fix: delete 'highlight' and 'downplay' from 'events' 
and 'action'"
 add 5c3e94d7 feat:supplement 'atmosphere' configuration
 add c6ccf94d Merge pull request #271 from yyp0716/dev
 add a299ea80 Merge branch 'master' into dev
 add 30012190 doc: add doc for coarse pointer apache/echarts#17102
 add d625492b doc: add doc for coarse pointer apache/echarts#17102
 add 5183c66e Merge branch 'dev'
 add 58f14fe8 fix(api): add missing new options `useCoarsePointer` & 
`pointerSize` to `echarts#init` function for en doc.
 add c1748bb4 doc(gauge): axisLabel support rotate apache/echarts#16985
 add 5f644c8a Merge pull request #294 from apache/gauge
 add e3d50a6a fix(#294): default value for label rotate shouldn't be fixed 
and add missing version tip for `axisLabel.rotate` for gauge series.
 add 9877a55b fix(treemap): fix some wrong default values of item style of 
breadcrumb (#288)
 add 21dd9adb chore(server): disable cache and update deps.
 add 4ed24595 chore: update .asf.yaml
 add e1d348a6 chore: update .asf.yaml
 add 6d80fd24 feature: add roundTrip (go back) to the lines animation 
effect.
 add 4e9e74c7 fix(lines): add missing version tip for `roundTrip`
 add f6254fb6 release: add changelog of 5.4.0
 add b446bcb3 fix: tweak changelog.
 add 4c62d6bb fix: improve changelog
 add 88e758a9 chore(deps): bump engine.io and socket.io in /editor
 add ca77366f chore(deps): bump async from 2.6.3 to 2.6.4 in /editor
 add 392e4111 chore(deps): bump shell-quote from 1.7.2 to 1.7.3 in /editor
 add 3cead998 chore(deps): bump eventsource from 1.0.7 to 1.1.1 in /editor
 add 307a06a5 tweak zh changelog
 add 39dc3bef tweak zh changelog
 add 211c0553 Update data-zoom.md
 add 205d3a0f Update data-zoom.md
 add e37e005e fix typo in brush component
 add 5716bc6e fix: update deprecated usage of `echarts.time.parse/format`
 add c5a80125 fix: remove array support from geo related actions. 
(apache/echarts#17751)
 new ae767fee Merge pull request #306 from apache/master

The 1 revisions listed abo

[echarts] branch master updated: fix(type): add overflow property to AxisLabelBaseOption interface. close #17363

2022-10-26 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/master by this push:
 new 3dd13423f fix(type): add overflow property to AxisLabelBaseOption 
interface. close #17363
 new 817b84dcf Merge pull request #17808 from breizh24/fix-17363
3dd13423f is described below

commit 3dd13423f59f14e445f0822836711b809469f7c3
Author: Alberico 
AuthorDate: Fri Oct 21 12:04:23 2022 +0200

fix(type): add overflow property to AxisLabelBaseOption interface. close 
#17363

Co-authored-by: Giulio Mazzanti 
---
 src/coord/axisCommonTypes.ts | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/coord/axisCommonTypes.ts b/src/coord/axisCommonTypes.ts
index e3241cb02..5cf6a8a91 100644
--- a/src/coord/axisCommonTypes.ts
+++ b/src/coord/axisCommonTypes.ts
@@ -22,6 +22,7 @@ import {
 AreaStyleOption, ComponentOption, ColorString,
 AnimationOptionMixin, Dictionary, ScaleDataValue, CommonAxisPointerOption
 } from '../util/types';
+import { TextStyleProps } from 'zrender/src/graphic/Text';
 
 
 export const AXIS_TYPES = {value: 1, category: 1, time: 1, log: 1} as const;
@@ -230,6 +231,7 @@ interface AxisLabelBaseOption extends 
Omit {
 hideOverlap?: boolean;
 // Color can be callback
 color?: ColorString | ((value?: string | number, index?: number) => 
ColorString)
+overflow?: TextStyleProps['overflow']
 }
 interface AxisLabelOption extends 
AxisLabelBaseOption {
 formatter?: LabelFormatters[TType]


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated: fix(graph): draggable only work on force layout

2022-10-26 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/master by this push:
 new dd7ce3549 fix(graph): draggable only work on force layout
 new 0a5d50ad1 Merge pull request #17792 from 
kongmoumou/kongmoumou/fix-graph-draggable
dd7ce3549 is described below

commit dd7ce35490669b44ebc22f47764d7ed11d20d633
Author: kongmoumou 
AuthorDate: Wed Oct 19 21:54:53 2022 +0800

fix(graph): draggable only work on force layout
---
 src/chart/graph/GraphView.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/chart/graph/GraphView.ts b/src/chart/graph/GraphView.ts
index 0c6d1e01b..d5f51eba4 100644
--- a/src/chart/graph/GraphView.ts
+++ b/src/chart/graph/GraphView.ts
@@ -171,7 +171,7 @@ class GraphView extends ChartView {
 }
 });
 }
-el.setDraggable(draggable && !!forceLayout, 
!!itemModel.get('cursor'));
+el.setDraggable(draggable, !!itemModel.get('cursor'));
 
 const focus = itemModel.get(['emphasis', 'focus']);
 


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated: fix(dataStack): zero is neither positive nor negative stack, close #17801

2022-10-25 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/master by this push:
 new ff67cdc01 fix(dataStack): zero is neither positive nor negative stack, 
close #17801
 new 7f029b4cb Merge pull request #17809 from MainHou/fix-17801
ff67cdc01 is described below

commit ff67cdc01b157e3a49871b3fbd726098c94137d9
Author: houyusheng 
AuthorDate: Fri Oct 21 22:12:21 2022 +0800

fix(dataStack): zero is neither positive nor negative stack, close #17801
---
 src/processor/dataStack.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/processor/dataStack.ts b/src/processor/dataStack.ts
index 824e63059..fb0815426 100644
--- a/src/processor/dataStack.ts
+++ b/src/processor/dataStack.ts
@@ -131,8 +131,8 @@ function calculateStack(stackInfoList: StackInfo[]) {
 stackStrategy === 'all' // single stack group
 || (stackStrategy === 'positive' && val > 0)
 || (stackStrategy === 'negative' && val < 0)
-|| (stackStrategy === 'samesign' && sum >= 0 && val > 
0) // All positive stack
-|| (stackStrategy === 'samesign' && sum <= 0 && val < 
0) // All negative stack
+|| (stackStrategy === 'samesign' && sum > 0 && val > 
0) // All positive stack
+|| (stackStrategy === 'samesign' && sum < 0 && val < 
0) // All negative stack
 ) {
 // The sum has to be very small to be affected by the
 // floating arithmetic problem. An incorrect result 
will probably


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated: fix(i18n): language code for Ukrainian is UK, not UA

2022-10-25 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/master by this push:
 new 52673918f fix(i18n): language code for Ukrainian is UK, not UA
 new 3c11bf932 Merge pull request #17812 from 
striezel-stash/i18n-ukrainian-language-code
52673918f is described below

commit 52673918f2728f42f50d2ed0ef286d78ccc0987c
Author: Dirk Stolle 
AuthorDate: Sat Oct 22 20:57:26 2022 +0200

fix(i18n): language code for Ukrainian is UK, not UA

This commit also moves the generated object files.
I'm not sure whether this is really necessary, but better
be safe than sorry here.
---
 i18n/{langUA-obj.js => langUK-obj.js} | 0
 i18n/{langUA.js => langUK.js} | 2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/i18n/langUA-obj.js b/i18n/langUK-obj.js
similarity index 100%
rename from i18n/langUA-obj.js
rename to i18n/langUK-obj.js
diff --git a/i18n/langUA.js b/i18n/langUK.js
similarity index 99%
rename from i18n/langUA.js
rename to i18n/langUK.js
index 4394070af..edb8db04d 100644
--- a/i18n/langUA.js
+++ b/i18n/langUK.js
@@ -165,6 +165,6 @@ var localeObj = {
 }
 };
 
-echarts.registerLocale('UA', localeObj);
+echarts.registerLocale('UK', localeObj);
 
 });
\ No newline at end of file


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-website] branch asf-site updated: chore: fix a typo

2022-10-17 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/echarts-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 8c465d16 chore: fix a typo
 new 60cfe449 Merge pull request #11 from striezel-stash/fix-typo
8c465d16 is described below

commit 8c465d16bcd518f096b9e945937c7ab48481c108
Author: Dirk Stolle 
AuthorDate: Mon Oct 17 23:07:39 2022 +0200

chore: fix a typo
---
 examples/examples/js/gauge-progress.js | 2 +-
 examples/examples/ts/gauge-progress.ts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/examples/js/gauge-progress.js 
b/examples/examples/js/gauge-progress.js
index 4c63ba35..3d27cad3 100644
--- a/examples/examples/js/gauge-progress.js
+++ b/examples/examples/js/gauge-progress.js
@@ -1,5 +1,5 @@
 /*
-title: Grogress Gauge
+title: Progress Gauge
 titleCN: 进度仪表盘
 category: gauge
 shotWidth: 800
diff --git a/examples/examples/ts/gauge-progress.ts 
b/examples/examples/ts/gauge-progress.ts
index b22a9158..79d2e667 100644
--- a/examples/examples/ts/gauge-progress.ts
+++ b/examples/examples/ts/gauge-progress.ts
@@ -1,5 +1,5 @@
 /*
-title: Grogress Gauge
+title: Progress Gauge
 titleCN: 进度仪表盘
 category: gauge
 shotWidth: 800


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (788e09112 -> 004c3fa90)

2022-10-16 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 788e09112 Merge pull request #17776 from striezel-stash/fix-typos
 add 728cf4e81 feat(candlestick): provide borderColorDoji option for custom 
doji color
 new 004c3fa90 Merge pull request #17717 from apache/fix-11042

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/chart/candlestick/CandlestickSeries.ts |   2 +
 src/chart/candlestick/CandlestickView.ts   |  13 +-
 src/chart/candlestick/candlestickLayout.ts |  37 +++--
 src/chart/candlestick/candlestickVisual.ts |   6 +-
 test/candlestick-doji.html | 223 +
 5 files changed, 238 insertions(+), 43 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: Merge pull request #17717 from apache/fix-11042

2022-10-16 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 004c3fa905fa891cc6ca85d43f3f05248b08e97b
Merge: 788e09112 728cf4e81
Author: Wenli Zhang 
AuthorDate: Mon Oct 17 10:31:45 2022 +0800

Merge pull request #17717 from apache/fix-11042

feat(candlestick): provide borderColorDoji option for custom doji color

 src/chart/candlestick/CandlestickSeries.ts |   2 +
 src/chart/candlestick/CandlestickView.ts   |  13 +-
 src/chart/candlestick/candlestickLayout.ts |  37 +++--
 src/chart/candlestick/candlestickVisual.ts |   6 +-
 test/candlestick-doji.html | 223 +
 5 files changed, 238 insertions(+), 43 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated: chore: fix some typos

2022-10-16 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/master by this push:
 new 28812d168 chore: fix some typos
 new 788e09112 Merge pull request #17776 from striezel-stash/fix-typos
28812d168 is described below

commit 28812d1687f75e86285600df382e4c5c7867cc96
Author: Dirk Stolle 
AuthorDate: Sun Oct 16 18:52:55 2022 +0200

chore: fix some typos
---
 src/animation/customGraphicTransition.ts | 6 +++---
 src/component/dataZoom/roams.ts  | 4 ++--
 src/component/helper/MapDraw.ts  | 4 ++--
 src/coord/View.ts| 4 ++--
 src/coord/axisHelper.ts  | 2 +-
 src/coord/geo/GeoSVGResource.ts  | 2 +-
 src/coord/geo/Region.ts  | 2 +-
 src/core/Scheduler.ts| 4 ++--
 src/data/DataStore.ts| 2 +-
 src/data/helper/SeriesDataSchema.ts  | 4 ++--
 src/data/helper/transform.ts | 8 
 src/export/charts.ts | 4 ++--
 src/layout/barGrid.ts| 2 +-
 src/model/Component.ts   | 2 +-
 src/model/Global.ts  | 8 
 src/model/Model.ts   | 2 +-
 src/model/OptionManager.ts   | 2 +-
 src/model/Series.ts  | 2 +-
 src/model/mixin/dataFormat.ts| 4 ++--
 src/util/types.ts| 2 +-
 src/view/Chart.ts| 2 +-
 src/view/Component.ts| 2 +-
 22 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/src/animation/customGraphicTransition.ts 
b/src/animation/customGraphicTransition.ts
index 73c12401a..a2bf490c5 100644
--- a/src/animation/customGraphicTransition.ts
+++ b/src/animation/customGraphicTransition.ts
@@ -427,12 +427,12 @@ function duringCall(
 return;
 }
 // If el is remove from zr by reason like legend, during still need to 
called,
-// becuase el will be added back to zr and the prop value should not be 
incorrect.
+// because el will be added back to zr and the prop value should not be 
incorrect.
 
 const latestUserDuring = transitionInnerStore(el).userDuring;
 const scopeUserDuring = scope.userDuring;
 // Ensured a during is only called once in each animation frame.
-// If a during is called multiple times in one frame, maybe some users' 
calulation logic
+// If a during is called multiple times in one frame, maybe some users' 
calculation logic
 // might be wrong (not sure whether this usage exists).
 // The case of a during might be called twice can be: by default there is 
a animator for
 // 'x', 'y' when init. Before the init animation finished, call 
`setOption` to start
@@ -629,4 +629,4 @@ if (__DEV__) {
+ 'Only `' + keys(TRANSFORM_PROPS_MAP).join('`, `') + '` are 
permitted.');
 }
 };
-}
\ No newline at end of file
+}
diff --git a/src/component/dataZoom/roams.ts b/src/component/dataZoom/roams.ts
index c4f281d53..d33e1e287 100644
--- a/src/component/dataZoom/roams.ts
+++ b/src/component/dataZoom/roams.ts
@@ -233,7 +233,7 @@ export function installDataZoomRoamProcessor(registers: 
EChartsExtensionInstallR
 || (apiInner.coordSysRecordMap = createHashMap());
 
 coordSysRecordMap.each(function (coordSysRecord) {
-// `coordSysRecordMap` always exists (becuase it hold the 
`roam controller`, which should
+// `coordSysRecordMap` always exists (because it holds the 
`roam controller`, which should
 // better not re-create each time), but clear 
`dataZoomInfoMap` each round of the workflow.
 coordSysRecord.dataZoomInfoMap = null;
 });
@@ -294,4 +294,4 @@ export function installDataZoomRoamProcessor(registers: 
EChartsExtensionInstallR
 });
 });
 
-}
\ No newline at end of file
+}
diff --git a/src/component/helper/MapDraw.ts b/src/component/helper/MapDraw.ts
index 529601454..89827f957 100644
--- a/src/component/helper/MapDraw.ts
+++ b/src/component/helper/MapDraw.ts
@@ -617,7 +617,7 @@ class MapDraw {
  * `ignore` might have been modified by `LabelManager`, and 
`LabelManager#addLabelsOfSeries`
  * will subsequently cache `defaultAttr` like `ignore`. If do not do this 
reset, the modified
  * props will have no chance to be restored.
- * Note: this reset should be after `clearStates` in `renderSeries` 
becuase `useStates` in
+ * Note: This reset should be after `clearStates` in `renderSeries` 
because `useStates` in
  * `renderSeries` will cache the modified `ignore` to `el._normalState`.
  * TODO:
  * Use clone/immutable in `LabelManager`?
@@ -672,7 +672,7 @@ function applyOptionStyleForRegion(
 }
 >
 ): void {
-// All of the path are using `itemStyle`, becu

[echarts] branch master updated: fix: #17667 EChartsInitOpts type error about height and width

2022-10-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/master by this push:
 new 96f859c92 fix: #17667 EChartsInitOpts type error about height and width
 new db0f92abd Merge pull request #17727 from MainHou/master
96f859c92 is described below

commit 96f859c928f33a690331abc5e69add5b18b437ba
Author: houyusheng <1440248...@qq.com>
AuthorDate: Wed Oct 5 21:36:51 2022 +0800

fix: #17667 EChartsInitOpts type error about height and width
---
 src/core/echarts.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/core/echarts.ts b/src/core/echarts.ts
index 65ac63f85..e36d03607 100644
--- a/src/core/echarts.ts
+++ b/src/core/echarts.ts
@@ -328,8 +328,8 @@ type EChartsInitOpts = {
 useCoarsePointer?: boolean,
 pointerSize?: number,
 ssr?: boolean,
-width?: number,
-height?: number
+width?: number | string,
+height?: number | string
 };
 class ECharts extends Eventful {
 


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] 01/02: Update data-zoom.md

2022-10-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git

commit 211c0553cc1b1f09e028c2c551f171a1b6c93bb0
Author: Ry <630362...@qq.com>
AuthorDate: Fri Oct 7 22:34:57 2022 +0800

Update data-zoom.md
---
 zh/option/component/data-zoom.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/zh/option/component/data-zoom.md b/zh/option/component/data-zoom.md
index 578b41d9..cd8e259c 100644
--- a/zh/option/component/data-zoom.md
+++ b/zh/option/component/data-zoom.md
@@ -332,9 +332,9 @@ option: {
 
 + 当『X 轴 Y 轴分别受 `dataZoom` 组件控制』时:
 
-+ 如果 X 轴和 Y 轴是『同等地位的、不应互相影响的』,比如在『双数值轴散点图』中,那么两个轴可都设为 `fiterMode: 'empty'`。
++ 如果 X 轴和 Y 轴是『同等地位的、不应互相影响的』,比如在『双数值轴散点图』中,那么两个轴可都设为 `filterMode: 
'empty'`。
 
-+ 如果 X 轴为主,Y 轴为辅,比如在『柱状图』中,需要『拖动 `dataZoomX` 改变 X 轴过滤柱子时,Y 
轴的范围也自适应剩余柱子的高度』,『拖动 `dataZoomY` 改变 Y 轴过滤柱子时,X 轴范围不受影响』,那么就 X轴设为 `fiterMode: 
'filter'`,Y 轴设为 `fiterMode: 'empty'`,即主轴 `'filter'`,辅轴 `'empty'`。
++ 如果 X 轴为主,Y 轴为辅,比如在『柱状图』中,需要『拖动 `dataZoomX` 改变 X 轴过滤柱子时,Y 
轴的范围也自适应剩余柱子的高度』,『拖动 `dataZoomY` 改变 Y 轴过滤柱子时,X 轴范围不受影响』,那么就 X轴设为 `filterMode: 
'filter'`,Y 轴设为 `filterMode: 'empty'`,即主轴 `'filter'`,辅轴 `'empty'`。
 
 下面是个具体例子:
 


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] 02/02: Update data-zoom.md

2022-10-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git

commit 205d3a0fb8d886aa50a5c9fe8fb3a5f598608261
Author: Ry <630362...@qq.com>
AuthorDate: Fri Oct 7 22:35:39 2022 +0800

Update data-zoom.md
---
 en/option/component/data-zoom.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/en/option/component/data-zoom.md b/en/option/component/data-zoom.md
index df096de8..5e64f276 100644
--- a/en/option/component/data-zoom.md
+++ b/en/option/component/data-zoom.md
@@ -348,7 +348,7 @@ How to set `filterMode` is up to users, depending on the 
requirments and scenari
 
 + If `xAxis` and `yAxis` should not effect mutually (e.g. a scatter chart 
with both axes on the type of `'value'`), they should be set to be `filterMode: 
'empty'`.
 
-+ If `xAxis` is the main axis and `yAxis` is the auxiliary axis (or vise 
versa) (e.g., in a bar chart, when dragging `dataZoomX` to change the window of 
xAxis, we need the yAxis to adapt to the clipped data, but when dragging 
`dataZoomY` to change the window of yAxis, we need the xAxis not to be 
changed), in this case, `xAxis` should be set to be `fiterMode: 'filter'`, 
while `yAxis` should be set to be `fiterMode: 'empty'`.
++ If `xAxis` is the main axis and `yAxis` is the auxiliary axis (or vise 
versa) (e.g., in a bar chart, when dragging `dataZoomX` to change the window of 
xAxis, we need the yAxis to adapt to the clipped data, but when dragging 
`dataZoomY` to change the window of yAxis, we need the xAxis not to be 
changed), in this case, `xAxis` should be set to be `filterMode: 'filter'`, 
while `yAxis` should be set to be `filterMode: 'empty'`.
 
 It can be demonstrated by the sample:
 


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] branch master updated (39dc3bef -> 205d3a0f)

2022-10-07 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


from 39dc3bef tweak zh changelog
 new 211c0553 Update data-zoom.md
 new 205d3a0f Update data-zoom.md

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 en/option/component/data-zoom.md | 2 +-
 zh/option/component/data-zoom.md | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: Merge pull request #17716 from apache/master

2022-09-29 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch next
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 0c82ead7253fc4c77958b81f289a1804eea5160d
Merge: d897fa2e5 81321a63a
Author: Wenli Zhang 
AuthorDate: Thu Sep 29 17:53:07 2022 +0800

Merge pull request #17716 from apache/master

chore: merge 'master' branch into 'next'

 .eslintrc-common.yaml   |2 +-
 .github/workflows/ci.yml|2 +-
 .github/workflows/stale.yml |1 +
 .huskyrc|2 +-
 dist/echarts.common.js  | 1207 +-
 dist/echarts.common.js.map  |2 +-
 dist/echarts.common.min.js  |4 +-
 dist/echarts.esm.js | 1557 +++--
 dist/echarts.esm.js.map |2 +-
 dist/echarts.esm.min.js |4 +-
 dist/echarts.js | 1557 +++--
 dist/echarts.js.map |2 +-
 dist/echarts.min.js |4 +-
 dist/echarts.simple.js  | 1164 +-
 dist/echarts.simple.js.map  |2 +-
 dist/echarts.simple.min.js  |4 +-
 dist/extension/bmap.js  |   14 +-
 dist/extension/bmap.js.map  |2 +-
 extension-src/bmap/BMapCoordSys.ts  |   14 +
 extension-src/bmap/BMapModel.ts |4 +-
 extension-src/bmap/README.md|   34 +-
 i18n/langUA-obj.js  |  174 ++
 i18n/langUA.js  |  170 ++
 package-lock.json   | 2811 +++
 package.json|   14 +-
 src/animation/basicTransition.ts|8 +-
 src/animation/customGraphicKeyframeAnimation.ts |4 +-
 src/chart/bar/BaseBarSeries.ts  |   40 +-
 src/chart/boxplot/boxplotVisual.ts  |   26 -
 src/chart/boxplot/install.ts|4 +-
 src/chart/custom/CustomView.ts  |   73 +-
 src/chart/gauge/GaugeSeries.ts  |8 +-
 src/chart/gauge/GaugeView.ts|   68 +-
 src/chart/graph/GraphView.ts|3 +-
 src/chart/helper/Symbol.ts  |   20 +-
 src/chart/line/helper.ts|4 +-
 src/chart/map/MapSeries.ts  |2 +-
 src/chart/pie/PieSeries.ts  |   28 +-
 src/chart/pie/labelLayout.ts|4 +
 src/chart/pie/pieLayout.ts  |   17 +-
 src/chart/sankey/sankeyLayout.ts|2 +-
 src/chart/sunburst/sunburstAction.ts|6 +-
 src/chart/sunburst/sunburstLayout.ts|3 +-
 src/chart/tree/TreeSeries.ts|2 +-
 src/chart/treemap/TreemapSeries.ts  |4 +-
 src/component/axis/AxisBuilder.ts   |6 +-
 src/component/axis/CartesianAxisView.ts |   15 +-
 src/component/axis/SingleAxisView.ts|   15 +-
 src/component/dataZoom/DataZoomModel.ts |2 +-
 src/component/dataZoom/SliderZoomView.ts|3 +-
 src/component/legend/LegendModel.ts |8 +-
 src/component/legend/LegendView.ts  |2 +-
 src/component/marker/MarkAreaView.ts|   41 +-
 src/component/marker/MarkLineModel.ts   |2 +-
 src/component/marker/MarkLineView.ts|   10 +-
 src/component/marker/MarkPointModel.ts  |4 +-
 src/component/marker/MarkPointView.ts   |2 +-
 src/component/marker/markerHelper.ts|6 +-
 src/component/timeline/SliderTimelineView.ts|   11 +-
 src/coord/CoordinateSystem.ts   |2 +
 src/coord/axisHelper.ts |2 +-
 src/coord/cartesian/Grid.ts |4 +-
 src/coord/geo/GeoModel.ts   |4 +-
 src/coord/geo/GeoSVGResource.ts |2 +-
 src/coord/geo/fix/textCoord.ts  |2 +-
 src/coord/geo/geoCreator.ts |9 +-
 src/coord/single/Single.ts  |2 +-
 src/coord/single/SingleAxis.ts  |2 -
 src/core/echarts.ts |4 +-
 src/core/task.ts|2 +-
 src/export/api.ts   |6 +-
 src/export/core.ts  |1 +
 src/layout/barPolar.ts  |2 +-
 src/model/Series.ts |6 +-
 src/scale/Interval.ts   |3 +-
 src/scale/Log.ts|7 +-
 src/util/graphic.ts

[echarts] branch next updated (d897fa2e5 -> 0c82ead72)

2022-09-29 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch next
in repository https://gitbox.apache.org/repos/asf/echarts.git


from d897fa2e5 Merge pull request #17102 from apache/feat-coarse-pointer
 add a214eda00 单轴反向失效问题修复
 add 8cdcc7daf Merge pull request #17411 from 
wind108369/bugfix-single-inverse
 add 28baad87b chore(deps-dev): bump terser from 5.3.8 to 5.14.2
 add 178ec6fbd Merge pull request #17407 from 
apache/dependabot/npm_and_yarn/terser-5.14.2
 add d08a58f35 style: spelling mistakes
 add c7a8547ba style: spelling mistakes
 add 6a261fb79 style: spelling mistakes
 add 800fccaae Merge pull request #17383 from ZXYT/style-spelling-mistakes
 add d5ee24d75 fix(pie): fix `labelLine` may not be hidden when 
`minShowLabelRadian` is specified, resolves #17013.
 add 67afcbd2c Merge pull request #17412 from apache/fix-pie-labelLine
 add 749b64e94 fix(bar-race): provide subPixelOptimize option to solve 
#14679
 add 52d89e7c8 test(bar-race): update test
 add 5470effe5 feat(axis): set subPixelOptimize to be false during animation
 add 979654c46 fix(axis): remove unnecessary files
 add 466d08f41 fix(axis): when update for the first time, make sure done is 
called
 add 1a1575494 fix(subpixel): set animation with subpixel optimization
 add bc4ee6c95 fix(custom): fix elements may not be removed after updates 
#17333
 add 22c821823 fix(custom): apply leave transition and add more comments
 add ee3b8357c test(custom): add a test case with {} that should preserve 
child
 add fc43e0ac1 test(custom): add a test case
 add 44e650e3b fix(custom): fix the case for element after the null child
 add 8fc48c727 fix(custom): ignore element when renderItem returns a group 
with null elements
 add 09e0c801a test(custom): update test case for custom update
 add d9d00b89b Merge branch 'master' into fix-17333
 add c58437740 Merge pull request #17349 from apache/fix-17333
 add c76c297e6 fix(symbol): fix `emphasis.scale` can't be reset and 
specified value may not be respect.
 add bffad00b2 test(symbol): add test case for `emphasis.scale`
 add 4ed662984 test(vrt): fix changing value of select via js doesn't 
trigger `change` event.
 add 8294147a8 fix(symbol): remove unused import.
 add 8e4b5f075 Merge pull request #17442 from 
apache/fix/symbol-emphasis-scale
 add 715e1daee fix(custom): set ignore only if old child exists (#17450)
 add 59e180ec0 chore: fix wrong imports from `echarts.all`
 add e3c8e3cea chore: fix wrong imports from `echarts.all`
 add 074aa815e Merge pull request #17452 from apache/fix-import
 add 3a6c0979b 优化饼图性能
 add 77ee2a1cc test(pie): tweak pie-percent case - add time log, 
percentPrecision & label formatter.
 add d2746afba test(pie): fix test case pie3.html
 add c076a0ce6 Merge pull request #17275 from 
wind108369/improve-pie-performance
 add 08eb9a87e fix(theme): fix the abandoned normal level in the theme 
file. close #17473
 add 1e7f3b875 fix(theme):  move the label block to the outside.
 add abd40cc02 Merge pull request #17482 from Liangism/fix-17473
 add ef3e28fed feat(gauge): axisLabel support rotate like sunburst. close 
15944
 add a29d37c29 Merge pull request #16985 from MeetzhDing/fix-15944
 add f21ec1d29 fix: sliderZoom in candlestick dataset error
 add 63e05ae14 Merge pull request #17237 from jiawulin001/issue#17228
 add c885e6503 fix(log): fix log axis breaks a single data whose log value 
is negative #13154
 add 4bf7f4d56 fix(log): cache base variable
 add 62ebcb915 Merge pull request #17322 from apache/fix-13154
 add c1b677597 feat(pie): support specifying coordinate system for pie 
series.
 add a6307826c feat(bmap): support `convertToPixel` & `convertFromPixel` 
API.
 add 9bcded12e Merge pull request #17132 from 
apache/feat/pie-coordinate-system
 add f957036e8 Merge branch 'master' into fix-subpixel
 add 3c4179cd6 fix(subpixel): remove function
 add 118de18a4 fix(subpixel): refactor
 add c277d3927 fix(subpixel): refactor subPixelOptimizeLine
 add 3e48e9f52 fix(subpixel): remove an unexpected change
 add f2e8379c7 Merge pull request #17426 from apache/fix-subpixel
 add 99335dacf Merge branch 'next'
 add 3c27102b0 Merge pull request #17538 from apache/master-tmp
 add 41676b32b chore(deps): bump engine.io and socket.io
 add db866d8e7 Merge pull request #17539 from 
apache/dependabot/npm_and_yarn/engine.io-and-socket.io-3.6.0
 add 204f7a836 fix(theme): fix tooltips text style of the theme macarons
 add 71e954886 Merge pull request #17551 from mousne/master
 add 3c1afa916 change the  `deprecateReplaceLog` in  sunburstAction.ts
 add d1462ff42 fix the  deprecateReplaceLog  about downplay
 add b96b04ea2 Merge pull request #17587 from gitforhlp/master
 add 5b465297f fix a ty

[echarts] branch fix-11042 created (now 728cf4e81)

2022-09-29 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch fix-11042
in repository https://gitbox.apache.org/repos/asf/echarts.git


  at 728cf4e81 feat(candlestick): provide borderColorDoji option for custom 
doji color

This branch includes the following new commits:

 new 728cf4e81 feat(candlestick): provide borderColorDoji option for custom 
doji color

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: feat(candlestick): provide borderColorDoji option for custom doji color

2022-09-29 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch fix-11042
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 728cf4e81b16d98a89073188ca0864308854ce27
Author: Ovilia 
AuthorDate: Thu Sep 29 17:45:28 2022 +0800

feat(candlestick): provide borderColorDoji option for custom doji color

fix and close #11042
---
 src/chart/candlestick/CandlestickSeries.ts |   2 +
 src/chart/candlestick/CandlestickView.ts   |  13 +-
 src/chart/candlestick/candlestickLayout.ts |  37 +++--
 src/chart/candlestick/candlestickVisual.ts |   6 +-
 test/candlestick-doji.html | 223 +
 5 files changed, 238 insertions(+), 43 deletions(-)

diff --git a/src/chart/candlestick/CandlestickSeries.ts 
b/src/chart/candlestick/CandlestickSeries.ts
index 6f104e5bf..019e1c55f 100644
--- a/src/chart/candlestick/CandlestickSeries.ts
+++ b/src/chart/candlestick/CandlestickSeries.ts
@@ -43,6 +43,7 @@ type CandlestickDataValue = OptionDataValue[];
 interface CandlestickItemStyleOption extends ItemStyleOption {
 color0?: ZRColor
 borderColor0?: ColorString
+borderColorDoji?: ZRColor
 }
 export interface CandlestickStateOption {
 itemStyle?: CandlestickItemStyleOption
@@ -116,6 +117,7 @@ class CandlestickSeriesModel extends 
SeriesModel {
 color0: '#47b262', // negative
 borderColor: '#eb5454',
 borderColor0: '#47b262',
+borderColorDoji: null, // when close === open
 // borderColor: '#d24040',
 // borderColor0: '#398f4f',
 borderWidth: 1
diff --git a/src/chart/candlestick/CandlestickView.ts 
b/src/chart/candlestick/CandlestickView.ts
index ed4f6660c..3d05e81c7 100644
--- a/src/chart/candlestick/CandlestickView.ts
+++ b/src/chart/candlestick/CandlestickView.ts
@@ -368,9 +368,16 @@ function createLarge(
 ignoreCoarsePointer: true
 });
 group.add(elN);
+const elDoji = new LargeBoxPath({
+shape: {points: largePoints},
+__sign: 0,
+ignoreCoarsePointer: true
+});
+group.add(elDoji);
 
 setLargeStyle(1, elP, seriesModel, data);
 setLargeStyle(-1, elN, seriesModel, data);
+setLargeStyle(0, elDoji, seriesModel, data);
 
 if (incremental) {
 elP.incremental = true;
@@ -384,8 +391,12 @@ function createLarge(
 
 function setLargeStyle(sign: number, el: LargeBoxPath, seriesModel: 
CandlestickSeriesModel, data: SeriesData) {
 // TODO put in visual?
-const borderColor = seriesModel.get(['itemStyle', sign > 0 ? 'borderColor' 
: 'borderColor0'])
+let borderColor = seriesModel.get(['itemStyle', sign > 0 ? 'borderColor' : 
'borderColor0'])
+// Use color for border color by default.
 || seriesModel.get(['itemStyle', sign > 0 ? 'color' : 'color0']);
+if (sign === 0) {
+borderColor = seriesModel.get(['itemStyle', 'borderColorDoji']);
+}
 
 // Color must be excluded.
 // Because symbol provide setColor individually to set fill and stroke
diff --git a/src/chart/candlestick/candlestickLayout.ts 
b/src/chart/candlestick/candlestickLayout.ts
index 2a9afd997..f655b381f 100644
--- a/src/chart/candlestick/candlestickLayout.ts
+++ b/src/chart/candlestick/candlestickLayout.ts
@@ -22,7 +22,7 @@ import createRenderPlanner from 
'../helper/createRenderPlanner';
 import {parsePercent} from '../../util/number';
 import {map, retrieve2} from 'zrender/src/core/util';
 import { DimensionIndex, StageHandler, StageHandlerProgressParams } from 
'../../util/types';
-import CandlestickSeriesModel from './CandlestickSeries';
+import CandlestickSeriesModel, { CandlestickDataItemOption } from 
'./CandlestickSeries';
 import SeriesData from '../../data/SeriesData';
 import { RectLike } from 'zrender/src/core/BoundingRect';
 import DataStore from '../../data/DataStore';
@@ -106,8 +106,10 @@ const candlestickLayout: StageHandler = {
 subPixelOptimizePoint(ocLowPoint)
 );
 
+const itemModel = 
data.getItemModel(dataIndex);
+const hasDojiColor = !!itemModel.get(['itemStyle', 
'borderColorDoji']);
 data.setItemLayout(dataIndex, {
-sign: getSign(store, dataIndex, openVal, closeVal, 
closeDimI),
+sign: getSign(store, dataIndex, openVal, closeVal, 
closeDimI, hasDojiColor),
 initBaseline: openVal > closeVal
 ? ocHighPoint[vDimIdx] : ocLowPoint[vDimIdx], // open 
point.
 ends: ends,
@@ -170,6 +172,7 @@ const candlestickLayout: StageHandler = {
 const tmpOut: number[] = [];
 let dataIndex;
 const store = data.getStore();
+const hasDojiColor = !!seriesModel.get(['itemStyle', 
'borderColorDoji']);
 
 while ((dataIndex = params.next()) != null) {
 const axisDimVal = store.get(cDimI, dataInde

[echarts] 01/01: Merge pull request #17715 from apache/fix-pie

2022-09-28 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 81321a63a91d98378114153d446a2713e9c10844
Merge: 213f7ebd8 91382c21a
Author: Wenli Zhang 
AuthorDate: Thu Sep 29 11:49:10 2022 +0800

Merge pull request #17715 from apache/fix-pie

fix(pie): fix `labelLine` NPE when `minShowLabelRadian` is set

 src/chart/pie/labelLayout.ts |  7 +--
 test/pie-label.html  | 35 +++
 2 files changed, 40 insertions(+), 2 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (213f7ebd8 -> 81321a63a)

2022-09-28 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 213f7ebd8 Merge pull request #17691 from ZeekoZhu/echarts-17633
 add 91382c21a fix(pie): fix a NPE of `labelLine` when `minShowLabelRadian` 
is set.
 new 81321a63a Merge pull request #17715 from apache/fix-pie

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/chart/pie/labelLayout.ts |  7 +--
 test/pie-label.html  | 35 +++
 2 files changed, 40 insertions(+), 2 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-bot] branch master updated: add a new committer

2022-09-27 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-bot.git


The following commit(s) were added to refs/heads/master by this push:
 new 4c585dd  add a new committer
4c585dd is described below

commit 4c585dd7e3d8cee0f3db01dc21d76fc33e753910
Author: Ovilia 
AuthorDate: Wed Sep 28 11:26:25 2022 +0800

add a new committer
---
 src/coreCommitters.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/coreCommitters.js b/src/coreCommitters.js
index c635e7d..9ac5a53 100644
--- a/src/coreCommitters.js
+++ b/src/coreCommitters.js
@@ -14,7 +14,8 @@ const committers = [
 'alex2wong',
 'ClemMakesApps',
 'fuchunhui',
-'lefex'
+'lefex',
+'jiawulin001'
 ];
 
 function getCoreCommitters() {


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (9bbdb2224 -> 213f7ebd8)

2022-09-27 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 9bbdb2224 Merge pull request #17694 from apache/docs/extension-bmap
 new 81cbfcbff test(gauge): add reproduce of #17663
 new e4fbb582d fix(gauge): add sectors in the order of the 'clockwise' 
option
 new 204a04c4f refactor(treemap): replace Array.forEach with each
 new 213f7ebd8 Merge pull request #17691 from ZeekoZhu/echarts-17633

The 8876 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/chart/gauge/GaugeView.ts |   8 ++-
 test/gauge-case.html | 151 +--
 2 files changed, 110 insertions(+), 49 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-handbook] branch master updated: fix: title level

2022-09-26 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


The following commit(s) were added to refs/heads/master by this push:
 new d0bb73b  fix: title level
d0bb73b is described below

commit d0bb73b836624b5e7f57189de4d7bfc2ac5029be
Author: Ovilia 
AuthorDate: Mon Sep 26 17:44:01 2022 +0800

fix: title level
---
 contents/en/basics/release-note/5-4-0.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contents/en/basics/release-note/5-4-0.md 
b/contents/en/basics/release-note/5-4-0.md
index 839187a..ace136a 100644
--- a/contents/en/basics/release-note/5-4-0.md
+++ b/contents/en/basics/release-note/5-4-0.md
@@ -1,4 +1,4 @@
-## Apache ECharts 5.4.0 Features
+# Apache ECharts 5.4.0 Features
 
 ## Intelligent Pointer Snapping
 


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-examples] branch gh-pages updated: fix: gauge example size

2022-09-26 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/echarts-examples.git


The following commit(s) were added to refs/heads/gh-pages by this push:
 new e0ce8d73 fix: gauge example size
e0ce8d73 is described below

commit e0ce8d73c834258c7e187240843ebe74971aa652
Author: Ovilia 
AuthorDate: Mon Sep 26 17:42:58 2022 +0800

fix: gauge example size
---
 public/examples/ts/gauge-grade.ts | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/public/examples/ts/gauge-grade.ts 
b/public/examples/ts/gauge-grade.ts
index 720df531..cda1ec1d 100644
--- a/public/examples/ts/gauge-grade.ts
+++ b/public/examples/ts/gauge-grade.ts
@@ -12,6 +12,8 @@ option = {
   type: 'gauge',
   startAngle: 180,
   endAngle: 0,
+  center: ['50%', '75%'],
+  radius: '90%',
   min: 0,
   max: 1,
   splitNumber: 8,
@@ -68,12 +70,12 @@ option = {
 }
   },
   title: {
-offsetCenter: [0, '-20%'],
-fontSize: 30
+offsetCenter: [0, '-10%'],
+fontSize: 20
   },
   detail: {
-fontSize: 50,
-offsetCenter: [0, '0%'],
+fontSize: 30,
+offsetCenter: [0, '-35%'],
 valueAnimation: true,
 formatter: function (value: number) {
   return Math.round(value * 100);


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-handbook] branch master updated: fix: demo of gauge label rotation

2022-09-26 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


The following commit(s) were added to refs/heads/master by this push:
 new 4179a72  fix: demo of gauge label rotation
4179a72 is described below

commit 4179a72664a78a708ac0ea23570fb599fcfaf007
Author: Ovilia 
AuthorDate: Mon Sep 26 16:27:54 2022 +0800

fix: demo of gauge label rotation
---
 contents/en/basics/release-note/5-4-0.md | 2 ++
 contents/zh/basics/release-note/5-4-0.md | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/contents/en/basics/release-note/5-4-0.md 
b/contents/en/basics/release-note/5-4-0.md
index 3cad248..839187a 100644
--- a/contents/en/basics/release-note/5-4-0.md
+++ b/contents/en/basics/release-note/5-4-0.md
@@ -40,6 +40,8 @@ In this release, we added the support of the Ukrainian 
language. **Now Apache EC
 
 In this version, we support text rotation of the Gauge series.
 
+
+
 `axisLabel.rotate` can be set to `'tangential' | 'radial' | number`. If it is 
of type `number`, it indicates the rotation angle of the label from -90 degrees 
to 90 degrees, with positive values being counterclockwise. In addition to 
this, it can also be the strings `'radial'` for radial rotation and 
`'tangential'` for tangential rotation.
 
 ## Full Changelog
diff --git a/contents/zh/basics/release-note/5-4-0.md 
b/contents/zh/basics/release-note/5-4-0.md
index 4f26f9a..26a6356 100644
--- a/contents/zh/basics/release-note/5-4-0.md
+++ b/contents/zh/basics/release-note/5-4-0.md
@@ -40,6 +40,8 @@ Apache ECharts 一个很强大的功能就是各种图表类型、坐标系、
 
 在这个版本中,我们支持了仪表盘的文字旋转。
 
+
+
 `axisLabel.rotate` 可以设为 `'tangential' | 'radial' | number`。如果是 `number` 
类型,则表示标签的旋转角,从 -90 度到 90 度,正值是逆时针。除此之外,还可以是字符串 `'radial'` 表示径向旋转、`'tangential'` 
表示切向旋转。
 
 ## 完整更新记录


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-www] branch master updated: feat: remove new in nav

2022-09-26 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-www.git


The following commit(s) were added to refs/heads/master by this push:
 new ddca7055 feat: remove new in nav
ddca7055 is described below

commit ddca7055328c2a89e90dbca65c728452503c78ec
Author: Ovilia 
AuthorDate: Mon Sep 26 16:22:06 2022 +0800

feat: remove new in nav
---
 _jade/components/nav-mixin.jade | 1 -
 _jade/en/nav-mixin.jade | 1 -
 2 files changed, 2 deletions(-)

diff --git a/_jade/components/nav-mixin.jade b/_jade/components/nav-mixin.jade
index 7ccbdf29..e55fae71 100644
--- a/_jade/components/nav-mixin.jade
+++ b/_jade/components/nav-mixin.jade
@@ -20,7 +20,6 @@ mixin nav(hostParam, cdnPayRootParam, cdnPayVersionParam)
 a(href="#{hostParam}/zh/feature.html") 特性
 li
 a(href="#{hostParam}/handbook/zh/get-started/") 
使用手册
-span.new new
 li
 a(href="#{hostParam}/zh/api.html") API
 li
diff --git a/_jade/en/nav-mixin.jade b/_jade/en/nav-mixin.jade
index 587b55db..95a1a9e3 100644
--- a/_jade/en/nav-mixin.jade
+++ b/_jade/en/nav-mixin.jade
@@ -20,7 +20,6 @@ mixin nav(hostParam, cdnPayRootParam, cdnPayVersionParam)
 a(href="#{hostParam}/en/feature.html") Features
 li
 a(href="#{hostParam}/handbook/en/get-started/") 
Handbook
-span.new new
 li
 a(href="#{hostParam}/en/api.html") API
 li


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-examples] branch gh-pages updated: doc: update example for apache/echarts#16985

2022-09-26 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/echarts-examples.git


The following commit(s) were added to refs/heads/gh-pages by this push:
 new 30032409 doc: update example for apache/echarts#16985
30032409 is described below

commit 300324092427e0833c251cddd67b75a82b7c1ae5
Author: Ovilia 
AuthorDate: Mon Sep 26 16:18:34 2022 +0800

doc: update example for apache/echarts#16985
---
 public/examples/ts/gauge-grade.ts | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/public/examples/ts/gauge-grade.ts 
b/public/examples/ts/gauge-grade.ts
index af8d3f6c..720df531 100644
--- a/public/examples/ts/gauge-grade.ts
+++ b/public/examples/ts/gauge-grade.ts
@@ -53,15 +53,16 @@ option = {
 color: '#464646',
 fontSize: 20,
 distance: -60,
-formatter: function (value) {
+rotate: 'tangential',
+formatter: function (value: number) {
   if (value === 0.875) {
-return 'A';
+return 'Grade A';
   } else if (value === 0.625) {
-return 'B';
+return 'Grade B';
   } else if (value === 0.375) {
-return 'C';
+return 'Grade C';
   } else if (value === 0.125) {
-return 'D';
+return 'Grade D';
   }
   return '';
 }
@@ -74,8 +75,8 @@ option = {
 fontSize: 50,
 offsetCenter: [0, '0%'],
 valueAnimation: true,
-formatter: function (value) {
-  return Math.round(value * 100) + '分';
+formatter: function (value: number) {
+  return Math.round(value * 100);
 },
 color: 'auto'
   },


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-handbook] branch master updated: doc: add release post of 5.4.0

2022-09-26 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


The following commit(s) were added to refs/heads/master by this push:
 new 886c2f6  doc: add release post of 5.4.0
886c2f6 is described below

commit 886c2f6f9b0f54bb8d3b3767792090d8df226698
Author: Ovilia 
AuthorDate: Mon Sep 26 15:38:31 2022 +0800

doc: add release post of 5.4.0
---
 contents/en/basics/release-note/5-2-0.md |  58 ++-
 contents/en/basics/release-note/5-3-0.md |   4 ++
 contents/en/basics/release-note/5-4-0.md |  47 ++
 contents/en/how-to/interaction/coarse-pointer.md |   2 +-
 contents/en/posts.yml|   2 +
 contents/zh/basics/release-note/5-2-0.md |  58 ++-
 contents/zh/basics/release-note/5-3-0.md |   4 ++
 contents/zh/basics/release-note/5-4-0.md |  47 ++
 contents/zh/posts.yml|   2 +
 static/images/5-4-0/pie-amap.png | Bin 0 -> 477572 bytes
 static/images/5-4-0/pie-bmap.png | Bin 0 -> 521037 bytes
 static/images/5-4-0/pie-calendar.png | Bin 0 -> 59648 bytes
 static/images/5-4-0/pie-geo.png  | Bin 0 -> 443125 bytes
 static/images/5-4-0/pie-grid.png | Bin 0 -> 62946 bytes
 14 files changed, 113 insertions(+), 111 deletions(-)

diff --git a/contents/en/basics/release-note/5-2-0.md 
b/contents/en/basics/release-note/5-2-0.md
index 74bc550..08ffc0c 100644
--- a/contents/en/basics/release-note/5-2-0.md
+++ b/contents/en/basics/release-note/5-2-0.md
@@ -466,58 +466,6 @@ If you're interested in some of the features and 
optimizations in 5.2.0, you may
 
 If you're interested in what's next for Apache ECharts, you can also follow 
our development plans at [GitHub 
Milestone](https://github.com/apache/echarts/milestones). Feel free to join us 
as a contributor (learn more at [Wiki](https://github.com/apache/echarts/wiki)).
 
-### Full Changelog
-
- Break Changes
-
-- [Fix][pie] Negative value will be filtered 
[#15095](https://github.com/apache/echarts/issues/15095) 
([ssthouse](https://github.com/ssthouse))
-
- All Changes
-
-- **[Feature] Introduce universal transition to all series. 
[#15208](https://github.com/apache/echarts/issues/15208) 
([pissang](https://github.com/pissang))**
-- [Feature][color] Add `series.colorBy` 
[#13788](https://github.com/apache/echarts/issues/13788) 
([Ovilia](https://github.com/Ovilia))
-- [Feature][label] Support sector label positions for polar bars 
[#774](https://github.com/ecomfe/zrender/issues/774) 
([Ovilia](https://github.com/Ovilia))
-- [Feature][effectscatter] Add `rippleEffect.number` 
[#15335](https://github.com/apache/echarts/issues/15335) 
([plainheart](https://github.com/plainheart))
-- [Feature][gauge] Add `pointer.showAbove` to allow pointer show above the 
title and details. [#15337](https://github.com/apache/echarts/issues/15337) 
([AmosChenYQ](https://github.com/AmosChenYQ)) 
[#15326](https://github.com/apache/echarts/issues/15326) 
([susiwen8](https://github.com/susiwen8))
-- [Feature][emphasis] `emphasis.color` can use `'inherit'` to be not 
higlighted. [#15172](https://github.com/apache/echarts/issues/15172) 
([Foreverwzh](https://github.com/Foreverwzh))
-- [Feature][pie] Display an empty cicle when pie don't have value. 
[#15095](https://github.com/apache/echarts/issues/15095) 
([ssthouse](https://github.com/ssthouse))
-- [Fix][dataset] Fix dataset performance drops signifcantly on high dimensions 
data. [#15355](https://github.com/apache/echarts/issues/15355) 
([pissang](https://github.com/pissang))
-- [Fix][axis] Optimize format in time axis 
[#15465](https://github.com/apache/echarts/issues/15465) 
([leavest](https://github.com/leavest)) 
[#15434](https://github.com/apache/echarts/issues/15434) 
([zhiyuc123](https://github.com/zhiyuc123))
-- [Fix][custom] Optimize text font compatibility with legacy code. 
[#15454](https://github.com/apache/echarts/issues/15454) 
([AmosChenYQ](https://github.com/AmosChenYQ))
-- [Fix][memory] Optimize memory when chart instance is still hold after 
dispose [#15417](https://github.com/apache/echarts/issues/15417) 
([pissang](https://github.com/pissang))
-- [Fix][line] Optimize color gradient when having infinite value. 
[#15416](https://github.com/apache/echarts/issues/15416) 
([plainheart](https://github.com/plainheart))
-- [Fix][date] Optimize date parsing 
[#15410](https://github.com/apache/echarts/issues/15410) 
([quillblue](https://github.com/quillblue))
-- [Fix][line] Fix render bug. 
[#788](https://github.com/ecomfe/zrender/issues/788) 
([pissang](https://github.com/pissang))
-- [Fix][candlestick] Fix style lost after update 
[#15368](https://github.com/apache/echarts/issues/15368) 
([pissang](https://github.com/pissang))
-- [Fix][sankey] 

[echarts-doc] branch master updated: chore(deps): bump eventsource from 1.0.7 to 1.1.1 in /editor

2022-09-25 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


The following commit(s) were added to refs/heads/master by this push:
 new 3cead998 chore(deps): bump eventsource from 1.0.7 to 1.1.1 in /editor
3cead998 is described below

commit 3cead998816fd15a0b774a486390225ec23f322b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Jun 1 21:03:46 2022 +

chore(deps): bump eventsource from 1.0.7 to 1.1.1 in /editor

Bumps [eventsource](https://github.com/EventSource/eventsource) from 1.0.7 
to 1.1.1.
- [Release notes](https://github.com/EventSource/eventsource/releases)
- 
[Changelog](https://github.com/EventSource/eventsource/blob/master/HISTORY.md)
- 
[Commits](https://github.com/EventSource/eventsource/compare/v1.0.7...v1.1.1)

---
updated-dependencies:
- dependency-name: eventsource
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] 
---
 editor/package-lock.json | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/editor/package-lock.json b/editor/package-lock.json
index b83583f0..2d74471c 100644
--- a/editor/package-lock.json
+++ b/editor/package-lock.json
@@ -5896,9 +5896,9 @@
   "dev": true
 },
 "eventsource": {
-  "version": "1.0.7",
-  "resolved": 
"https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz;,
-  "integrity": 
"sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==",
+  "version": "1.1.1",
+  "resolved": 
"https://registry.npmjs.org/eventsource/-/eventsource-1.1.1.tgz;,
+  "integrity": 
"sha512-qV5ZC0h7jYIAOhArFJgSfdyz6rALJyb270714o7ZtNnw2WSJ+eexhKtE0O8LYPRsHZHf2osHKZBxGPvm3kPkCA==",
   "dev": true,
   "requires": {
 "original": "^1.0.0"


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] branch master updated (ca77366f -> 392e4111)

2022-09-25 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


from ca77366f chore(deps): bump async from 2.6.3 to 2.6.4 in /editor
 add 392e4111 chore(deps): bump shell-quote from 1.7.2 to 1.7.3 in /editor

No new revisions were added by this update.

Summary of changes:
 editor/package-lock.json | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] branch master updated: chore(deps): bump async from 2.6.3 to 2.6.4 in /editor

2022-09-25 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


The following commit(s) were added to refs/heads/master by this push:
 new ca77366f chore(deps): bump async from 2.6.3 to 2.6.4 in /editor
ca77366f is described below

commit ca77366f7360471c58bd6c79bb9dc59a60dcc575
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Apr 29 10:24:07 2022 +

chore(deps): bump async from 2.6.3 to 2.6.4 in /editor

Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4.
- [Release notes](https://github.com/caolan/async/releases)
- [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md)
- [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4)

---
updated-dependencies:
- dependency-name: async
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] 
---
 editor/package-lock.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/editor/package-lock.json b/editor/package-lock.json
index 430d67a5..d3632313 100644
--- a/editor/package-lock.json
+++ b/editor/package-lock.json
@@ -2360,9 +2360,9 @@
   "dev": true
 },
 "async": {
-  "version": "3.2.0",
-  "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz;,
-  "integrity": 
"sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==",
+  "version": "3.2.3",
+  "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz;,
+  "integrity": 
"sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==",
   "dev": true
 },
 "async-each": {
@@ -10347,9 +10347,9 @@
   },
   "dependencies": {
 "async": {
-  "version": "2.6.3",
-  "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz;,
-  "integrity": 
"sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
+  "version": "2.6.4",
+  "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz;,
+  "integrity": 
"sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==",
   "dev": true,
   "requires": {
 "lodash": "^4.17.14"


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] branch master updated: chore(deps): bump engine.io and socket.io in /editor

2022-09-25 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


The following commit(s) were added to refs/heads/master by this push:
 new 88e758a9 chore(deps): bump engine.io and socket.io in /editor
88e758a9 is described below

commit 88e758a95dab5213c653f1e49516e496796a2248
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Sep 25 12:21:35 2022 +

chore(deps): bump engine.io and socket.io in /editor

Bumps [engine.io](https://github.com/socketio/engine.io) to 3.6.0 and 
updates ancestor dependency [socket.io](https://github.com/socketio/socket.io). 
These dependencies need to be updated together.


Updates `engine.io` from 3.4.2 to 3.6.0
- [Release notes](https://github.com/socketio/engine.io/releases)
- [Changelog](https://github.com/socketio/engine.io/blob/main/CHANGELOG.md)
- [Commits](https://github.com/socketio/engine.io/compare/3.4.2...3.6.0)

Updates `socket.io` from 2.3.0 to 2.5.0
- [Release notes](https://github.com/socketio/socket.io/releases)
- [Changelog](https://github.com/socketio/socket.io/blob/2.5.0/CHANGELOG.md)
- [Commits](https://github.com/socketio/socket.io/compare/2.3.0...2.5.0)

---
updated-dependencies:
- dependency-name: engine.io
  dependency-type: indirect
- dependency-name: socket.io
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] 
---
 editor/package-lock.json | 201 +--
 editor/package.json  |   2 +-
 2 files changed, 90 insertions(+), 113 deletions(-)

diff --git a/editor/package-lock.json b/editor/package-lock.json
index ea0f81db..430d67a5 100644
--- a/editor/package-lock.json
+++ b/editor/package-lock.json
@@ -1966,7 +1966,7 @@
 "after": {
   "version": "0.8.2",
   "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz;,
-  "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8="
+  "integrity": 
"sha512-QbJ0NTQ/I9DI3uSJA4cbexiwQeRAfjPScqIbSjUDd9TOrcg6pTkdgziesOqxBMBzit8vFCTwrP27t13vFOORRA=="
 },
 "aggregate-error": {
   "version": "3.1.0",
@@ -2380,7 +2380,8 @@
 "async-limiter": {
   "version": "1.0.1",
   "resolved": 
"https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz;,
-  "integrity": 
"sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="
+  "integrity": 
"sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==",
+  "dev": true
 },
 "asynckit": {
   "version": "0.4.0",
@@ -2516,7 +2517,7 @@
 "backo2": {
   "version": "1.0.2",
   "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz;,
-  "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc="
+  "integrity": 
"sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA=="
 },
 "balanced-match": {
   "version": "1.0.0",
@@ -2580,9 +2581,9 @@
   }
 },
 "base64-arraybuffer": {
-  "version": "0.1.5",
-  "resolved": 
"https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz;,
-  "integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg="
+  "version": "0.1.4",
+  "resolved": 
"https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz;,
+  "integrity": 
"sha512-a1eIFi4R9ySrbiMuyTGx5e92uRH5tQY6kArNcFaKBUleIoLjdjBg7Zxm3Mqm3Kmkf27HLR/1fnxX9q8GQ7Iavg=="
 },
 "base64-js": {
   "version": "1.3.1",
@@ -2610,14 +2611,6 @@
 "tweetnacl": "^0.14.3"
   }
 },
-"better-assert": {
-  "version": "1.0.2",
-  "resolved": 
"https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz;,
-  "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=",
-  "requires": {
-"callsite": "1.0.0"
-  }
-},
 "bfj": {
   "version": "6.1.2",
   "resolved": "https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz;,
@@ -3144,11 +3137,6 @@
 "caller-callsite": "^2.0.0"
   }
 },
-"callsite": {
-  "version": "1.0.0",
-  "resolved":

[echarts] branch master updated (c40ebbf6d -> 9bbdb2224)

2022-09-25 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from c40ebbf6d Merge pull request #17695 from apache/fix-lint
 add 0d58d5a82 docs(extension/bmap): improve documentation of bmap 
extension.
 add 9bbdb2224 Merge pull request #17694 from apache/docs/extension-bmap

No new revisions were added by this update.

Summary of changes:
 extension-src/bmap/BMapModel.ts |  4 ++--
 extension-src/bmap/README.md| 34 +++---
 2 files changed, 25 insertions(+), 13 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (3ca9e32a9 -> c40ebbf6d)

2022-09-25 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 3ca9e32a9 Merge pull request #17696 from apache/release
 add bc32dc4e2 style(lint): fix spacing issues
 add 080bdeb99 fix(boxplot): remove empty `boxplotVisual`.
 add 14521df42 fix(chart): remove unused imports.
 add f98cbabc5 chore(workflow): add diff filter
 new c40ebbf6d Merge pull request #17695 from apache/fix-lint

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/ci.yml|  2 +-
 .huskyrc|  2 +-
 src/chart/bar/BaseBarSeries.ts  |  4 ++--
 src/chart/boxplot/boxplotVisual.ts  | 26 --
 src/chart/boxplot/install.ts|  4 +---
 src/chart/graph/GraphView.ts|  3 +--
 src/chart/line/helper.ts|  4 ++--
 src/chart/map/MapSeries.ts  |  2 +-
 src/chart/sankey/sankeyLayout.ts|  2 +-
 src/chart/sunburst/sunburstLayout.ts|  3 +--
 src/chart/tree/TreeSeries.ts|  2 +-
 src/chart/treemap/TreemapSeries.ts  |  4 ++--
 src/component/dataZoom/DataZoomModel.ts |  2 +-
 src/component/legend/LegendView.ts  |  2 +-
 src/component/marker/MarkAreaView.ts| 14 +++---
 src/component/marker/MarkLineModel.ts   |  2 +-
 src/component/marker/MarkPointModel.ts  |  4 ++--
 src/component/marker/markerHelper.ts|  2 +-
 src/coord/cartesian/Grid.ts |  4 ++--
 src/coord/geo/GeoModel.ts   |  4 ++--
 src/coord/geo/GeoSVGResource.ts |  2 +-
 src/coord/geo/fix/textCoord.ts  |  2 +-
 22 files changed, 33 insertions(+), 63 deletions(-)
 delete mode 100644 src/chart/boxplot/boxplotVisual.ts


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: Merge pull request #17695 from apache/fix-lint

2022-09-25 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit c40ebbf6dcb4e9b7a80df1b012437b3945daf24c
Merge: 3ca9e32a9 f98cbabc5
Author: Wenli Zhang 
AuthorDate: Mon Sep 26 10:05:51 2022 +0800

Merge pull request #17695 from apache/fix-lint

style(lint): fix spacing issues and remove unused imports and functions

 .github/workflows/ci.yml|  2 +-
 .huskyrc|  2 +-
 src/chart/bar/BaseBarSeries.ts  |  4 ++--
 src/chart/boxplot/boxplotVisual.ts  | 26 --
 src/chart/boxplot/install.ts|  4 +---
 src/chart/graph/GraphView.ts|  3 +--
 src/chart/line/helper.ts|  4 ++--
 src/chart/map/MapSeries.ts  |  2 +-
 src/chart/sankey/sankeyLayout.ts|  2 +-
 src/chart/sunburst/sunburstLayout.ts|  3 +--
 src/chart/tree/TreeSeries.ts|  2 +-
 src/chart/treemap/TreemapSeries.ts  |  4 ++--
 src/component/dataZoom/DataZoomModel.ts |  2 +-
 src/component/legend/LegendView.ts  |  2 +-
 src/component/marker/MarkAreaView.ts| 14 +++---
 src/component/marker/MarkLineModel.ts   |  2 +-
 src/component/marker/MarkPointModel.ts  |  4 ++--
 src/component/marker/markerHelper.ts|  2 +-
 src/coord/cartesian/Grid.ts |  4 ++--
 src/coord/geo/GeoModel.ts   |  4 ++--
 src/coord/geo/GeoSVGResource.ts |  2 +-
 src/coord/geo/fix/textCoord.ts  |  2 +-
 22 files changed, 33 insertions(+), 63 deletions(-)



-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (9c007664e -> 583711e95)

2022-09-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 9c007664e Merge pull request #17606 from apache/fix-lint
 new a051e30b6 fix: markArea of bar series now covers whole category
 new 27c69b01e fix lint error
 new 8b8e1662b Merge branch 'master' of https://github.com/apache/echarts 
into issue#17021
 new 6dbd5df64 New testcase added
 new b47d05673 fix: markPoint now can show normally
 new 5186308c1 fix lint error
 new 70db7c6fc chore: resolve conflict
 new 583711e95 Merge pull request #17098 from jiawulin001/issue#17021

The 8856 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/chart/bar/BaseBarSeries.ts   |  33 +--
 src/component/marker/MarkAreaView.ts |  25 -
 src/coord/CoordinateSystem.ts|   2 +
 src/model/Series.ts  |   6 +-
 test/bar-markArea.html   | 184 +++
 5 files changed, 240 insertions(+), 10 deletions(-)
 create mode 100644 test/bar-markArea.html


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: Merge pull request #17606 from apache/fix-lint

2022-09-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 9c007664e74c947267f6ba8bba3987d6a2aed362
Merge: 878e29455 59c206c53
Author: Wenli Zhang 
AuthorDate: Fri Sep 23 09:52:49 2022 +0800

Merge pull request #17606 from apache/fix-lint

chore(lint): enforce consistent spacing after comment starts

 .eslintrc-common.yaml   | 2 +-
 src/coord/axisHelper.ts | 2 +-
 src/core/task.ts| 2 +-
 src/export/api.ts   | 6 +++---
 src/layout/barPolar.ts  | 2 +-
 src/util/states.ts  | 3 ++-
 src/util/types.ts   | 3 ++-
 7 files changed, 11 insertions(+), 9 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (878e29455 -> 9c007664e)

2022-09-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 878e29455 Merge pull request #17683 from 
apache/dependabot/npm_and_yarn/shelljs-and-jshint--removed
 add 59c206c53 chore(lint): enforce consistent spacing after comment starts
 new 9c007664e Merge pull request #17606 from apache/fix-lint

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .eslintrc-common.yaml   | 2 +-
 src/coord/axisHelper.ts | 2 +-
 src/core/task.ts| 2 +-
 src/export/api.ts   | 6 +++---
 src/layout/barPolar.ts  | 2 +-
 src/util/states.ts  | 3 ++-
 src/util/types.ts   | 3 ++-
 7 files changed, 11 insertions(+), 9 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (9a1a486eb -> 878e29455)

2022-09-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 9a1a486eb Merge pull request #17684 from 
apache/dependabot/npm_and_yarn/validator-and-microsoft/api-extractor-13.7.0
 add dc8f361f6 chore(deps): bump shelljs and jshint
 new 878e29455 Merge pull request #17683 from 
apache/dependabot/npm_and_yarn/shelljs-and-jshint--removed

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 package-lock.json | 38 +-
 package.json  |  2 +-
 2 files changed, 10 insertions(+), 30 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: Merge pull request #17683 from apache/dependabot/npm_and_yarn/shelljs-and-jshint--removed

2022-09-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 878e294558d3d78311c26784b19d0519abe9d560
Merge: 9a1a486eb dc8f361f6
Author: Wenli Zhang 
AuthorDate: Thu Sep 22 18:08:42 2022 +0800

Merge pull request #17683 from 
apache/dependabot/npm_and_yarn/shelljs-and-jshint--removed

chore(deps): bump shelljs and jshint

 package-lock.json | 38 +-
 package.json  |  2 +-
 2 files changed, 10 insertions(+), 30 deletions(-)



-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (56a989b03 -> 9a1a486eb)

2022-09-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 56a989b03 Merge pull request #17510 from 
caiwukun/fix_legend_name_duplicate_removal
 add 10a8cd111 chore(deps): bump validator and @microsoft/api-extractor
 add 9a1a486eb Merge pull request #17684 from 
apache/dependabot/npm_and_yarn/validator-and-microsoft/api-extractor-13.7.0

No new revisions were added by this update.

Summary of changes:
 package-lock.json | 582 +-
 package.json  |   2 +-
 2 files changed, 355 insertions(+), 229 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (f51f1feb3 -> 56a989b03)

2022-09-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from f51f1feb3 Merge pull request #17282 from 
apache/dependabot/npm_and_yarn/jsdom-16.7.0
 new 4fe4561ea fix: remove legend name duplicate to prevent double inverse 
bug
 new 46cdb2bf1 fix: revert package-lock.json
 new 56a989b03 Merge pull request #17510 from 
caiwukun/fix_legend_name_duplicate_removal

The 8842 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/component/legend/LegendModel.ts | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] branch master updated (c9e9a022d -> f51f1feb3)

2022-09-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from c9e9a022d Merge pull request #17647 from apache/fix-timeline
 add fe0555b0b chore(deps): bump jsdom from 16.4.0 to 16.7.0
 new f51f1feb3 Merge pull request #17282 from 
apache/dependabot/npm_and_yarn/jsdom-16.7.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 package-lock.json | 620 --
 1 file changed, 322 insertions(+), 298 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts] 01/01: Merge pull request #17282 from apache/dependabot/npm_and_yarn/jsdom-16.7.0

2022-09-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit f51f1feb351bb72ff5020ee0d0721716d71c0542
Merge: c9e9a022d fe0555b0b
Author: Wenli Zhang 
AuthorDate: Thu Sep 22 17:45:58 2022 +0800

Merge pull request #17282 from apache/dependabot/npm_and_yarn/jsdom-16.7.0

chore(deps): bump jsdom from 16.4.0 to 16.7.0

 package-lock.json | 620 --
 1 file changed, 322 insertions(+), 298 deletions(-)

diff --cc package-lock.json
index 7db23f2be,224733d22..c287932ad
--- a/package-lock.json
+++ b/package-lock.json
@@@ -2447,9 -2398,21 +2456,21 @@@
  "node_modules/after": {
"version": "0.8.2",
"resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz;,
 -  "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=",
 +  "integrity": 
"sha512-QbJ0NTQ/I9DI3uSJA4cbexiwQeRAfjPScqIbSjUDd9TOrcg6pTkdgziesOqxBMBzit8vFCTwrP27t13vFOORRA==",
"dev": true
  },
+ "node_modules/agent-base": {
+   "version": "6.0.2",
+   "resolved": 
"https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz;,
+   "integrity": 
"sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+   "dev": true,
+   "dependencies": {
+ "debug": "4"
+   },
+   "engines": {
+ "node": ">= 6.0.0"
+   }
+ },
  "node_modules/ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz;,
@@@ -15418,9 -15340,18 +15438,18 @@@
  "after": {
"version": "0.8.2",
"resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz;,
 -  "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=",
 +  "integrity": 
"sha512-QbJ0NTQ/I9DI3uSJA4cbexiwQeRAfjPScqIbSjUDd9TOrcg6pTkdgziesOqxBMBzit8vFCTwrP27t13vFOORRA==",
"dev": true
  },
+ "agent-base": {
+   "version": "6.0.2",
+   "resolved": 
"https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz;,
+   "integrity": 
"sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+   "dev": true,
+   "requires": {
+ "debug": "4"
+   }
+ },
  "ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz;,


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



[echarts-doc] branch master updated (58f14fe8 -> 5f644c8a)

2022-09-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


from 58f14fe8 fix(api): add missing new options `useCoarsePointer` & 
`pointerSize` to `echarts#init` function for en doc.
 add c1748bb4 doc(gauge): axisLabel support rotate apache/echarts#16985
 new 5f644c8a Merge pull request #294 from apache/gauge

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 en/option/partial/label-rotate-tangential.md |  9 +
 en/option/series/gauge.md|  4 
 en/option/series/sunburst.md | 19 +++
 zh/option/partial/label-rotate-tangential.md |  9 +
 zh/option/series/gauge.md|  4 
 zh/option/series/sunburst.md | 17 +++--
 6 files changed, 32 insertions(+), 30 deletions(-)
 create mode 100644 en/option/partial/label-rotate-tangential.md
 create mode 100644 zh/option/partial/label-rotate-tangential.md


-
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org



<    1   2   3   4   5   6   7   8   9   10   >