[GitHub] [echarts] linghengqian commented on issue #16479: Unable to access 'getModel' function in typescript

2022-09-15 Thread GitBox


linghengqian commented on issue #16479:
URL: https://github.com/apache/echarts/issues/16479#issuecomment-1248971146

   @pissang 
   - I'm a bit confused, `getModel()` appears frequently, both in the 
documentation and in git. For example, 
https://echarts.apache.org/en/faq.html#baidu-map and 
https://github.com/apache/echarts/tree/5.3.3/extension-src/bmap both mention ` 
chart.getModel().getComponent('bmap').getBMap();`, which specifically accesses 
the private method. If this is not allowed to be used directly, should we 
update the documentation?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] ayashjorden opened a new issue, #17660: [Feature] When Symbol is SVG, make the area of the symbol clickable, no just the SVG paths

2022-09-15 Thread GitBox


ayashjorden opened a new issue, #17660:
URL: https://github.com/apache/echarts/issues/17660

   ### What problem does this feature solve?
   
   When Symbol is SVG, only the SVG paths will generate a click event. so the 
User need to be precise in order to click on a node.
   The area between the paths is not clickable.
   https://user-images.githubusercontent.com/4204371/190554294-6848383d-db24-478b-b3f7-e69f917c0623.png";>
   
   For example, when the above SVG is used as a graph node symbol, only the 
black lines that outline the lightbulb are clickable, and the area between them 
does not generate a click event.
   
   ### What does the proposed API look like?
   
   Suggested is to augment the Symbol attributes with `SymbolMask: 'match' | 
'square' | 'none'`, where:
   * `match` will make the whole SVG clickable, tracking the outline shape 
perimeter
   * `square` will create a square clickable area around the shape perimeter
   * `none` (or undefined or not-set) - events will fire only when clicking the 
paths


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] The-Wizzart opened a new issue, #17659: [Bug] Legend do not break in VisualMap piecewise option

2022-09-15 Thread GitBox


The-Wizzart opened a new issue, #17659:
URL: https://github.com/apache/echarts/issues/17659

   ### Version
   
   5.3.3
   
   ### Link to Minimal Reproduction
   
   https://echarts.apache.org/examples/en/editor.html?c=calendar-heatmap
   
   ### Steps to Reproduce
   
   Hi,
   I was trying to use VisualMap with piecewise option, however, not all the 
legends are visible, see the image below:
   
![Screenshot_20220916-065927_Chrome](https://user-images.githubusercontent.com/96917577/190553973-48d65036-59b0-4644-a021-adb968067bab.jpg)
   
   Is it possible to auto break the legend, or manually define the number of 
columns?
   
   
   ### Current Behavior
   
   The VisualMap legend does not fit into the screen.
   
   ### Expected Behavior
   
   Automatically break the legend if doesn't fit.
   
   ### Environment
   
   ```markdown
   - OS:Android
   - Browser: Chrome 
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] JinJianQi closed issue #17658: [Feature] How can I hide the short line below the xAxis Label ?

2022-09-15 Thread GitBox


JinJianQi closed issue #17658: [Feature] How can I hide the short line below 
the xAxis Label ?
URL: https://github.com/apache/echarts/issues/17658


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] JinJianQi commented on issue #17658: [Feature] How can I hide the short line below the xAxis Label ?

2022-09-15 Thread GitBox


JinJianQi commented on issue #17658:
URL: https://github.com/apache/echarts/issues/17658#issuecomment-1248886936

   I found this option in official doc.
   `axisTick`
   https://echarts.apache.org/zh/option.html#xAxis.axisTick.show
   Thanks, btw. :)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] JinJianQi opened a new issue, #17658: [Feature] How can I hide the short line below the xAxis Label ?

2022-09-15 Thread GitBox


JinJianQi opened a new issue, #17658:
URL: https://github.com/apache/echarts/issues/17658

   ### What problem does this feature solve?
   
   https://user-images.githubusercontent.com/33452468/190549786-48f27a41-a93a-4f62-987a-81f4ff46b237.png";>
   
   
   ### What does the proposed API look like?
   
   Plz provide some methods to customize the xAxis label, thanks :)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
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 #286 from apache/feat-pie-coordinateSystem

2022-09-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-doc.git

commit 91c9ecc69cee2f25b3570cdd48eff319a59c70ae
Merge: a7549296 8724589f
Author: Wenli Zhang 
AuthorDate: Fri Sep 16 10:15:31 2022 +0800

Merge pull request #286 from apache/feat-pie-coordinateSystem

feat(pie): add docs for new option `coordinateSystem` of the pie series

 en/option/partial/coord-sys.md| 48 +++
 en/option/series/boxplot.md   |  2 +-
 en/option/series/candlestick.md   |  2 +-
 en/option/series/effectScatter.md |  2 +-
 en/option/series/line.md  |  2 +-
 en/option/series/pie.md   |  9 
 en/option/series/scatter.md   |  2 +-
 en/option/series/themeRiver.md|  2 +-
 zh/option/partial/coord-sys.md| 48 +++
 zh/option/series/boxplot.md   |  2 +-
 zh/option/series/candlestick.md   |  2 +-
 zh/option/series/effectScatter.md |  2 +-
 zh/option/series/line.md  |  2 +-
 zh/option/series/pie.md   |  9 
 zh/option/series/scatter.md   |  2 +-
 15 files changed, 125 insertions(+), 11 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 (a7549296 -> 91c9ecc6)

2022-09-15 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 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`
 new 91c9ecc6 Merge pull request #286 from apache/feat-pie-coordinateSystem

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/coord-sys.md| 48 +++
 en/option/series/boxplot.md   |  2 +-
 en/option/series/candlestick.md   |  2 +-
 en/option/series/effectScatter.md |  2 +-
 en/option/series/line.md  |  2 +-
 en/option/series/pie.md   |  9 
 en/option/series/scatter.md   |  2 +-
 en/option/series/themeRiver.md|  2 +-
 zh/option/partial/coord-sys.md| 48 +++
 zh/option/series/boxplot.md   |  2 +-
 zh/option/series/candlestick.md   |  2 +-
 zh/option/series/effectScatter.md |  2 +-
 zh/option/series/line.md  |  2 +-
 zh/option/series/pie.md   |  9 
 zh/option/series/scatter.md   |  2 +-
 15 files changed, 125 insertions(+), 11 deletions(-)


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



[GitHub] [echarts-doc] Ovilia merged pull request #286: feat(pie): add docs for new option `coordinateSystem` of the pie series

2022-09-15 Thread GitBox


Ovilia merged PR #286:
URL: https://github.com/apache/echarts-doc/pull/286


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts-doc] plainheart opened a new pull request, #286: feat(pie): add docs for new option `coordinateSystem` of the pie series

2022-09-15 Thread GitBox


plainheart opened a new pull request, #286:
URL: https://github.com/apache/echarts-doc/pull/286

   Also fixed some wrong `seriesType` passed to the `coord-sys` partial 
component. I don't mention the `cartesian2d` coordinate as it's not supported 
perfectly.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[echarts-doc] 02/03: fix: add missing item for `calendar` coordinate system.

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

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

commit 1913b728bb46714d41cbd3032bc1c5308cf29e6d
Author: plainheart 
AuthorDate: Fri Sep 16 09:49:21 2022 +0800

fix: add missing item for `calendar` coordinate system.
---
 en/option/partial/coord-sys.md | 6 ++
 zh/option/partial/coord-sys.md | 6 ++
 2 files changed, 12 insertions(+)

diff --git a/en/option/partial/coord-sys.md b/en/option/partial/coord-sys.md
index 2ebcf4ca..f8d5da3f 100644
--- a/en/option/partial/coord-sys.md
+++ b/en/option/partial/coord-sys.md
@@ -41,6 +41,12 @@ The coordinate used in the series, whose options are:
 Use parallel coordinates, with 
[parallelIndex](~series-${seriesType}.parallelIndex) to assign the 
corresponding parallel coordinate components.
 {{ /if }}
 
+{{ if: ${calendar} }}
++ `'calendar'`
+
+Use calendar coordinates, with 
[calendarIndex](~series-${seriesType}.calendarIndex) to assign the 
corresponding calendar coordinate components.
+{{ /if }}
+
 {{ if: ${none} }}
 + `'none'`
 
diff --git a/zh/option/partial/coord-sys.md b/zh/option/partial/coord-sys.md
index fab95b59..9111c248 100644
--- a/zh/option/partial/coord-sys.md
+++ b/zh/option/partial/coord-sys.md
@@ -41,6 +41,12 @@
 使用平行坐标系,通过 [parallelIndex](~series-${seriesType}.parallelIndex) 
指定相应的平行坐标系组件。
 {{ /if }}
 
+{{ if: ${calendar} }}
++ `'calendar'`
+
+使用日历坐标系,通过 [calendarIndex](~series-${seriesType}.calendarIndex) 
指定相应的日历坐标系组件。
+{{ /if }}
+
 {{ if: ${none} }}
 + `'none'`
 


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



[echarts-doc] 01/03: feat(pie): add `coordinateSystem` option for pie series

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

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

commit 054af810a2ca65a8e9701348789b4e470e44ba53
Author: plainheart 
AuthorDate: Wed Aug 17 12:45:31 2022 +0800

feat(pie): add `coordinateSystem` option for pie series
---
 en/option/partial/coord-sys.md | 42 ++
 en/option/series/pie.md|  9 +
 zh/option/partial/coord-sys.md | 42 ++
 zh/option/series/pie.md|  9 +
 4 files changed, 102 insertions(+)

diff --git a/en/option/partial/coord-sys.md b/en/option/partial/coord-sys.md
index 989fdb46..2ebcf4ca 100644
--- a/en/option/partial/coord-sys.md
+++ b/en/option/partial/coord-sys.md
@@ -3,6 +3,12 @@
 
 ## coordinateSystem(string) = ${coordSysDefault}
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 The coordinate used in the series, whose options are:
 
 {{ if: ${none} }}
@@ -44,34 +50,70 @@ The coordinate used in the series, whose options are:
 {{ if: ${cartesian2d} }}
 ## xAxisIndex(number) = 0
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 Index of [x axis](~xAxis) to combine with, which is  useful for multiple x 
axes in one chart.
 
 ## yAxisIndex(number) = 0
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 Index of [y axis](~yAxis) to combine with, which is  useful for multiple y 
axes in one chart.
 {{ /if }}
 
 {{ if: ${polar} }}
 ## polarIndex(number) = 0
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 Index of [polar coordinate](~polar) to combine with, which is useful for 
multiple polar axes in one chart.
 {{ /if }}
 
 {{ if: ${geo} }}
 ## geoIndex(number) = 0
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 Index of [geographic coordinate](~geo) to combine with, which is useful for 
multiple geographic axes in one chart.
 {{ /if }}
 
 {{ if: ${parallel} }}
 ## parallelIndex(number) = 0
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 Index of [parallel coordinates](~parallel) to combine with, which is useful 
for multiple parallel axes in one chart.
 {{ /if }}
 
 {{ if: ${calendar} }}
 ## calendarIndex(number) = 0
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 Index of [calendar coordinates](~calendar) to combine with, which is useful 
for multiple calendar coordinates in one chart.
 {{ /if }}
 
diff --git a/en/option/series/pie.md b/en/option/series/pie.md
index 7c19fd0b..d90c10ca 100644
--- a/en/option/series/pie.md
+++ b/en/option/series/pie.md
@@ -31,6 +31,15 @@ Since ECharts v4.6.0, we provide `'labelLine'` and `'edge'` 
two extra layouts. C
 
 {{ use: partial-legend-hover-link() }}
 
+{{ use: partial-coord-sys(
+seriesType = "pie",
+coordSysDefault = "null",
+none = true,
+geo = true,
+calendar = true,
+version = "5.4.0"
+) }}
+
 {{ use: partial-selected-mode() }}
 
 ## selectedOffset(number) = 10
diff --git a/zh/option/partial/coord-sys.md b/zh/option/partial/coord-sys.md
index a64d1db4..fab95b59 100644
--- a/zh/option/partial/coord-sys.md
+++ b/zh/option/partial/coord-sys.md
@@ -3,6 +3,12 @@
 
 ## coordinateSystem(string) = ${coordSysDefault}
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 该系列使用的坐标系,可选:
 
 {{ if: ${none} }}
@@ -44,34 +50,70 @@
 {{ if: ${cartesian2d} }}
 ## xAxisIndex(number) = 0
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 使用的 [x 轴](~xAxis)的 index,在单个图表实例中存在多个 x 轴的时候有用。
 
 ## yAxisIndex(number) = 0
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 使用的 [y 轴](~yAxis)的 index,在单个图表实例中存在多个 y轴的时候有用。
 {{ /if }}
 
 {{ if: ${polar} }}
 ## polarIndex(number) = 0
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 使用的[极坐标系](~polar)的 index,在单个图表实例中存在多个极坐标系的时候有用。
 {{ /if }}
 
 {{ if: ${geo} }}
 ## geoIndex(number) = 0
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 使用的[地理坐标系](~geo)的 index,在单个图表实例中存在多个地理坐标系的时候有用。
 {{ /if }}
 
 {{ if: ${parallel} }}
 ## parallelIndex(number) = 0
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 使用的[平行坐标系](~parallel)的 index,在单个图表实例中存在多个平行坐标系的时候有用。
 {{ /if }}
 
 {{ if: ${calendar} }}
 ## calendarIndex(number) = 0
 
+{{ if: ${version} }}
+{{ use: partial-version(
+version = ${version}
+) }}
+{{ /if }}
+
 使用的[日历坐标系](~calendar)的 index,在单个图表实例中存在多个日历坐标系的时候有用。
 {{ /if }}
 
diff --git a/zh/option/series/pie.md b/zh/option/series/pie.md
index 5527e2e0..794f6203 100644
--- a/zh

[echarts-doc] 03/03: fix wrong `seriesType` was passed to `partial/coord-sys.md`

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

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

commit 8724589ff83fc810b129d2fca505ba5e0545dd43
Author: plainheart 
AuthorDate: Fri Sep 16 09:54:30 2022 +0800

fix wrong `seriesType` was passed to `partial/coord-sys.md`
---
 en/option/series/boxplot.md   | 2 +-
 en/option/series/candlestick.md   | 2 +-
 en/option/series/effectScatter.md | 2 +-
 en/option/series/line.md  | 2 +-
 en/option/series/scatter.md   | 2 +-
 en/option/series/themeRiver.md| 2 +-
 zh/option/series/boxplot.md   | 2 +-
 zh/option/series/candlestick.md   | 2 +-
 zh/option/series/effectScatter.md | 2 +-
 zh/option/series/line.md  | 2 +-
 zh/option/series/scatter.md   | 2 +-
 11 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/en/option/series/boxplot.md b/en/option/series/boxplot.md
index 03979b76..8de4552a 100644
--- a/en/option/series/boxplot.md
+++ b/en/option/series/boxplot.md
@@ -22,7 +22,7 @@ Multiple `series` can be displayed in the same coordinate 
system. Please refer t
 ) }}
 
 {{ use: partial-coord-sys(
-seriesType = "cartesian2d",
+seriesType = "boxplot",
 coordSysDefault = "'cartesian2d'",
 cartesian2d = true
 ) }}
diff --git a/en/option/series/candlestick.md b/en/option/series/candlestick.md
index b4b88daf..934882e8 100644
--- a/en/option/series/candlestick.md
+++ b/en/option/series/candlestick.md
@@ -35,7 +35,7 @@ We use red to represent increasing and blue decreasing by 
default. If you want t
 ) }}
 
 {{ use: partial-coord-sys(
-seriesType = "cartesian2d",
+seriesType = "candlestick",
 coordSysDefault = "'cartesian2d'",
 cartesian2d = true
 ) }}
diff --git a/en/option/series/effectScatter.md 
b/en/option/series/effectScatter.md
index 8682a9b8..13acd462 100644
--- a/en/option/series/effectScatter.md
+++ b/en/option/series/effectScatter.md
@@ -78,7 +78,7 @@ The maximum zooming scale of ripples in animation.
 The brush type for ripples. options: `'stroke'` and `'fill'`.
 
 {{ use: partial-coord-sys(
-seriesType = "bar",
+seriesType = "effectScatter",
 coordSysDefault = "'cartesian2d'",
 cartesian2d = true,
 polar = true,
diff --git a/en/option/series/line.md b/en/option/series/line.md
index dd3904ed..527d33c4 100644
--- a/en/option/series/line.md
+++ b/en/option/series/line.md
@@ -24,7 +24,7 @@ Broken line chart relates all the data points 
[symbol](~series-line.symbol) by b
 {{ use: partial-colorby() }}
 
 {{ use: partial-coord-sys(
-seriesType = "bar",
+seriesType = "line",
 coordSysDefault = "'cartesian2d'",
 cartesian2d = true,
 polar = true,
diff --git a/en/option/series/scatter.md b/en/option/series/scatter.md
index 7730b84f..9061d8eb 100644
--- a/en/option/series/scatter.md
+++ b/en/option/series/scatter.md
@@ -19,7 +19,7 @@ It could be used with [rectangular coordinate](~grid) and 
[polar coordinate](~po
 {{ use: partial-colorby() }}
 
 {{ use: partial-coord-sys(
-seriesType = "bar",
+seriesType = "scatter",
 coordSysDefault = "'cartesian2d'",
 cartesian2d = true,
 polar = true,
diff --git a/en/option/series/themeRiver.md b/en/option/series/themeRiver.md
index 0093389f..15f5ab82 100644
--- a/en/option/series/themeRiver.md
+++ b/en/option/series/themeRiver.md
@@ -46,7 +46,7 @@ The positional information of the whole theme river view 
reuses the positional i
 
 ## coordinateSystem(string) = "single"
 
-coordinate. The theme river adopts sinle time axis.
+coordinate. The theme river adopts single time axis.
 
 ## boundaryGap(Array) = ["10%", "10%"]
 
diff --git a/zh/option/series/boxplot.md b/zh/option/series/boxplot.md
index 3b1ac19e..a79941dc 100644
--- a/zh/option/series/boxplot.md
+++ b/zh/option/series/boxplot.md
@@ -61,7 +61,7 @@ const option = {
 ) }}
 
 {{ use: partial-coord-sys(
-seriesType = "cartesian2d",
+seriesType = "boxplot",
 coordSysDefault = "'cartesian2d'",
 cartesian2d = true
 ) }}
diff --git a/zh/option/series/candlestick.md b/zh/option/series/candlestick.md
index dd36957a..b08c1e0e 100644
--- a/zh/option/series/candlestick.md
+++ b/zh/option/series/candlestick.md
@@ -224,7 +224,7 @@ const option = {
 ) }}
 
 {{ use: partial-coord-sys(
-seriesType = "cartesian2d",
+seriesType = "candlestick",
 coordSysDefault = "'cartesian2d'",
 cartesian2d = true
 ) }}
diff --git a/zh/option/series/effectScatter.md 
b/zh/option/series/effectScatter.md
index 377e7681..e6d3b44b 100644
--- a/zh/option/series/effectScatter.md
+++ b/zh/option/series/effectScatter.md
@@ -95,7 +95,7 @@ const option = {
 波纹的绘制方式,可选 `'stroke'` 和 `'fill'`。
 
 {{ use: partial-coord-sys(
-seriesType = "bar",
+seriesType = "effectScatter",
 coordSysDefault = "'cartesian2d'",
 cartesian2d = true,
 polar = true,
diff --git a/zh/option/series/line.md b/zh/option/series/line.md
index 430493e8..c446b08b 100644

[echarts-doc] branch feat-pie-coordinateSystem created (now 8724589f)

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

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


  at 8724589f fix wrong `seriesType` was passed to `partial/coord-sys.md`

This branch includes the following new commits:

 new 054af810 feat(pie): add `coordinateSystem` option for pie series
 new 1913b728 fix: add missing item for `calendar` coordinate system.
 new 8724589f fix wrong `seriesType` was passed to `partial/coord-sys.md`

The 3 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



[GitHub] [echarts] hongdeyuan closed issue #17650: [Bug] time axis labels Irregular interval

2022-09-15 Thread GitBox


hongdeyuan closed issue #17650: [Bug] time axis labels Irregular interval
URL: https://github.com/apache/echarts/issues/17650


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] hongdeyuan commented on issue #17650: [Bug] time axis labels Irregular interval

2022-09-15 Thread GitBox


hongdeyuan commented on issue #17650:
URL: https://github.com/apache/echarts/issues/17650#issuecomment-1248816122

   > 这个不是 bug,默认按可用宽度计算出的间距是一周的间隔,到了月底因为要显示 1 
号位置,所以会出现不等分的情况。如果要强制每周显示,也就是不显示每月 1 号,请关注 #17576 。
   
   感谢您的回复,你的回复对我非常有用!🙏


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] plainheart commented on issue #17657: [Bug] Uncaught TypeError: Cannot read properties of undefined (reading '__ec_inner_22')

2022-09-15 Thread GitBox


plainheart commented on issue #17657:
URL: https://github.com/apache/echarts/issues/17657#issuecomment-1248802492

   It looks similar to the issues fixed by #17308. Please try `v5.4.0-rc.1` and 
check if it works.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] ngoc308 commented on issue #13178: ScatterGL points get blurred when zooming in

2022-09-15 Thread GitBox


ngoc308 commented on issue #13178:
URL: https://github.com/apache/echarts/issues/13178#issuecomment-1248798792

   @plainheart When do your team plan to have a look at this issue?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] github-actions[bot] commented on issue #13178: ScatterGL points get blurred when zooming in

2022-09-15 Thread GitBox


github-actions[bot] commented on issue #13178:
URL: https://github.com/apache/echarts/issues/13178#issuecomment-1248629426

   This issue has been automatically marked as stale because it did not have 
recent activity. It will be closed in 7 days if no further activity occurs. If 
you wish not to mark it as stale, please leave a comment in this issue.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] nhhaidee opened a new issue, #17657: [Bug] Uncaught TypeError: Cannot read properties of undefined (reading '__ec_inner_22')

2022-09-15 Thread GitBox


nhhaidee opened a new issue, #17657:
URL: https://github.com/apache/echarts/issues/17657

   ### Version
   
   5.3.3
   
   ### Link to Minimal Reproduction
   
   _No response_
   
   ### Steps to Reproduce
   
   Hi,
   
   My application has problem with error `Uncaught TypeError: Cannot read 
properties of undefined (reading '__ec_inner_22')` and I opened this issue here 
just want to consult with dev team what error mean? Errors thrown from below 
Echarts code
   
   ```
   } catch (e) {
 this[IN_MAIN_PROCESS_KEY] = false;
 throw e;
   }
   ```
   
   My application is complicated so I am still trying to narrow down problem 
and will provide minimal test to reproduce problem later. I hope for now that 
dev team can help me to figure out what is problem
   
   ```
ECharts.prototype.resize = function (opts) {
   if (this[IN_MAIN_PROCESS_KEY]) {
 if (true) {
   (0,_util_log_js__WEBPACK_IMPORTED_MODULE_11__.error)('`resize` 
should not be called during main process.');
 }
   
 return;
   }
   
   if (this._disposed) {
 disposedWarning(this.id);
 return;
   }
   
   this._zr.resize(opts);
   
   var ecModel = this._model; // Resize loading effect
   
   this._loadingFX && this._loadingFX.resize();
   
   if (!ecModel) {
 return;
   }
   
   var needPrepare = ecModel.resetOption('media');
   var silent = opts && opts.silent; // There is some real cases that:
   // chart.setOption(option, { lazyUpdate: true });
   // chart.resize();
   
   if (this[PENDING_UPDATE]) {
 if (silent == null) {
   silent = this[PENDING_UPDATE].silent;
 }
   
 needPrepare = true;
 this[PENDING_UPDATE] = null;
   }
   
   this[IN_MAIN_PROCESS_KEY] = true;
   
   try {
 needPrepare && prepare(this);
 updateMethods.update.call(this, {
   type: 'resize',
   animation: 
(0,zrender_lib_core_util_js__WEBPACK_IMPORTED_MODULE_3__.extend)({
 // Disable animation
 duration: 0
   }, opts && opts.animation)
 });
   } catch (e) {
 this[IN_MAIN_PROCESS_KEY] = false;
 throw e;
   }
   
   this[IN_MAIN_PROCESS_KEY] = false;
   flushPendingActions.call(this, silent);
   triggerUpdatedEvent.call(this, silent);
 };
   
   ```
   
   ### Current Behavior
   
   Error:
   
   ```
   Uncaught TypeError: Cannot read properties of undefined (reading 
'__ec_inner_20')
   at eval (model.js:603:19)
   at DataDiffer.eval [as _remove] (CustomView.js:198:169)
   at DataDiffer._executeOneToOne (DataDiffer.js:161:30)
   at DataDiffer.execute (DataDiffer.js:128:75)
   at CustomChartView.render (CustomView.js:202:8)
   at Task.progress (Chart.js:247:20)
   at Task._doProgress (task.js:193:10)
   at Task.perform (task.js:159:16)
   at eval (echarts.js:1893:24)
   at GlobalModel.eval (Global.js:668:10)
   ```
   
   ### Expected Behavior
   
   Should be no error
   
   ### Environment
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   The problem does not happen with Echarts v5.2.2 but happen since 5.3.0


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] JakubRaban opened a new issue, #17656: `setOption` takes most of the execution time in `clone` function

2022-09-15 Thread GitBox


JakubRaban opened a new issue, #17656:
URL: https://github.com/apache/echarts/issues/17656

   ### Version
   
   5.3.3
   
   ### Link to Minimal Reproduction
   
   _No response_
   
   ### Steps to Reproduce
   
   Create a line chart with a few series and animations turned off which is 
periodically updated (in my example every 100ms) using `setOption` function by 
supplying the entire history of data for the visible period of time:
   ```
   chart.setOption({
 series: dataHistoryForAllSeries.map(dp => ({ data: dp }))
   })
   ```
   Every series has around 100 000 data points
   
   ### Current Behavior
   
   Recently I created a demo app to check whether echarts would fit my team's 
use case. In our application we have multiple history graphs with varying time 
intervals which are first pre-filled with historical data and then updated with 
varying frequency, sometimes as often as every 100ms. I do it similarly to what 
[examples](https://echarts.apache.org/examples/en/editor.html?c=doc-example%2Ftutorial-dynamic-data)
 show (that is, old data is removed, new data is pushed and entire array is 
supplied to `series.data` in `setOption`). When profiling the app, I realized 
that a big part of `setOption`'s execution time is spent on cloning (function 
called `clone`). The rest seems like a small part compared to that. I'd like to 
know whether data could be passed in another way in which the performance would 
be hurt less, or whether it's something that could be improved on your side.
   
   Analysing one of the function calls from the screenshot below:
   - total `setOption` execution time: 107.93 ms
   - approximate time spent in some cloning function: 54.26 ms
   
![image](https://user-images.githubusercontent.com/21955777/190450241-ef080235-23fa-44f6-b93d-a67166274526.png)
   
   ### Expected Behavior
   
   Reduction of `setOption` execution time
   
   ### Environment
   
   ```markdown
   - OS: Fedora Linux 35
   - Browser: Chrome 103
   - Framework: Angular
   ```
   
   
   ### Any additional comments?
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] praful-hunde opened a new issue, #17655: [Bug]

2022-09-15 Thread GitBox


praful-hunde opened a new issue, #17655:
URL: https://github.com/apache/echarts/issues/17655

   ### Version
   
   5.3.3
   
   ### Link to Minimal Reproduction
   
   https://codesandbox.io/s/function-plot-forked-13rr3y?file=/index.js
   
   ### Steps to Reproduce
   
   Configure Vertical markLine for series with xAxis value.
   Disable the lable by setting show:false
   
   ### Current Behavior
   
   The label is visible on top of the markLine. Label text shows x-position of 
the markLine.
   
   ### Expected Behavior
   
   The label shall not be visible.
   
   ### Environment
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] echarts-bot[bot] commented on issue #17655: [Bug]

2022-09-15 Thread GitBox


echarts-bot[bot] commented on issue #17655:
URL: https://github.com/apache/echarts/issues/17655#issuecomment-1248276033

   I'm sorry to close this issue for it lacks the necessary title. Please 
provide **a _descriptive_ and as _concise_ as possible title to describe your 
problems or requests** and then the maintainers or I will reopen this issue.
   
   Every good bug report or feature request starts with a title. Your issue 
title is a critical element as it's the first thing maintainers see.
   
   A good issue title makes it easier for maintainers to understand what the 
issue is, easily locate it, and know what steps they'll need to take to fix it.
   
   Moreover, it's better to include keywords, as this makes it easier to find 
the issue self and similar issues in searches.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] echarts-bot[bot] closed issue #17655: [Bug]

2022-09-15 Thread GitBox


echarts-bot[bot] closed issue #17655: [Bug] 
URL: https://github.com/apache/echarts/issues/17655


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] longchuxiong commented on issue #17633: [Bug] 仪表盘顺时针和轴线展示的不一致

2022-09-15 Thread GitBox


longchuxiong commented on issue #17633:
URL: https://github.com/apache/echarts/issues/17633#issuecomment-1248130453

   
![image](https://user-images.githubusercontent.com/46107383/190421102-541c3f5c-8352-4216-9c27-e09109094a35.png)
   
   我设置的是顺时针,但是这个分段看起来是逆时针展示的,这个圆角交界处


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] RahulVishK opened a new issue, #17654: markline should start from center of axis Tick of category axis

2022-09-15 Thread GitBox


RahulVishK opened a new issue, #17654:
URL: https://github.com/apache/echarts/issues/17654

   ### What problem does this feature solve?
   
   when there are mutiple Series , markline should start from center of axis 
Tick of category axis , even there are mu;tiple series 
   
   
![image](https://user-images.githubusercontent.com/97290751/190402709-7cbe0e6e-ec2b-4473-a9cf-abcb33eebe20.png)
   
   
   option = {
 title: {
   text: 'World Population'
 },
 tooltip: {
   trigger: 'axis',
   axisPointer: {
 type: 'shadow'
   }
 },
 legend: {},
 grid: {
   left: '3%',
   right: '4%',
   bottom: '3%',
   containLabel: true
 },
 xAxis: {
   type: 'value',
   boundaryGap: [0, 0.01]
 },
 yAxis: {
   type: 'category',
   data: ['Brazil', 'Indonesia', 'USA', 'India', 'China', 'World'],
   axisTick:{
 alignWithLabel :true
   }
 },
 series: [
   {
 name: '2011',
 type: 'bar',
 data: [18203, 23489, 29034, 104970, 131744, 630230],
 markLine: {
   data: [
 {
   yAxis: 'World',
   lineStyle: {
 color: 'red',
 width: 5,
 type: 'solid'
   }
 }
   ]
 }
   },
   {
 name: '2012',
 type: 'bar',
 data: [19325, 23438, 31000, 121594, 134141, 681807],
 markLine: {
   data: [
 {
   yAxis: 'World',
   lineStyle: {
 color: 'red',
 width: 5,
 type: 'solid'
   }
 }
   ]
 }
   }
 ]
   };

   
   
   
   
   ### What does the proposed API look like?
   
   
![image](https://user-images.githubusercontent.com/97290751/190403077-8f804440-84f5-4003-8cda-7178aeb4f1ed.png)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] ob-ARC commented on issue #17631: [Bug] Bar series clipping does not work

2022-09-15 Thread GitBox


ob-ARC commented on issue #17631:
URL: https://github.com/apache/echarts/issues/17631#issuecomment-1247929282

   The Problem is that this also applies to the contained line series - it is 
not desired to have incomplete line segments being filtered. I just do not want 
bars outside the axes, which with the current options seems impossible to 
achieve :(


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] ob-ARC commented on issue #17631: [Bug] Bar series clipping does not work

2022-09-15 Thread GitBox


ob-ARC commented on issue #17631:
URL: https://github.com/apache/echarts/issues/17631#issuecomment-1247892379

   Ah, "shouldn't"- I read "should" first. Thanks for the hint!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] ob-ARC commented on issue #17631: [Bug] Bar series clipping does not work

2022-09-15 Thread GitBox


ob-ARC commented on issue #17631:
URL: https://github.com/apache/echarts/issues/17631#issuecomment-1247889673

   Please re-apply the "bug" label.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] ob-ARC commented on issue #17631: [Bug] Bar series clipping does not work

2022-09-15 Thread GitBox


ob-ARC commented on issue #17631:
URL: https://github.com/apache/echarts/issues/17631#issuecomment-1247887524

   > This is not a bug. You shouldn't set 
[filterMode](https://echarts.apache.org/en/option.html#dataZoom-inside.filterMode)
 to be `'none'`.
   
   Sorry, but have you checked my example? dataZoom.filterMode **is** set to 
"none"!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] Ovilia commented on issue #17631: [Bug] Bar series clipping does not work

2022-09-15 Thread GitBox


Ovilia commented on issue #17631:
URL: https://github.com/apache/echarts/issues/17631#issuecomment-1247869022

   This is not a bug. You shouldn't set 
[filterMode](https://echarts.apache.org/en/option.html#dataZoom-inside.filterMode)
 to be `'none'`.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] echarts-bot[bot] commented on issue #17641: [Bug] setOption took a long time. And block UI process.

2022-09-15 Thread GitBox


echarts-bot[bot] commented on issue #17641:
URL: https://github.com/apache/echarts/issues/17641#issuecomment-1247829115

   @JinJianQi Please provide a demo for the issue either with [Official 
Editor](https://echarts.apache.org/examples/editor.html), 
[CodePen](https://codepen.io/Ovilia/pen/dyYWXWM), 
[CodeSandbox](https://codesandbox.io/s/echarts-basic-example-template-mpfz1s) 
or [JSFiddle](https://jsfiddle.net/plainheart/e46ozpqj/7/).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] Ovilia commented on issue #17641: [Bug] setOption took a long time. And block UI process.

2022-09-15 Thread GitBox


Ovilia commented on issue #17641:
URL: https://github.com/apache/echarts/issues/17641#issuecomment-1247828928

   30ms is acceptable time and should not be noticable to users. Do you call 
`setOption` very frequently or what else cause the problem? You may provide a 
demo to show the case.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] Ovilia closed issue #17640: [Bug] 离群值 大家一般怎么展示?

2022-09-15 Thread GitBox


Ovilia closed issue #17640: [Bug] 离群值 大家一般怎么展示?
URL: https://github.com/apache/echarts/issues/17640


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] Ovilia commented on issue #17633: [Bug] 仪表盘顺时针和轴线展示的不一致

2022-09-15 Thread GitBox


Ovilia commented on issue #17633:
URL: https://github.com/apache/echarts/issues/17633#issuecomment-1247825605

   看起来没有问题,是我没理解吗?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] cnovelli commented on issue #17649: How to display sum stack bar in echarts with legend handling

2022-09-15 Thread GitBox


cnovelli commented on issue #17649:
URL: https://github.com/apache/echarts/issues/17649#issuecomment-1247783540

   > You can stack another bar series with transparent background and set label 
position to be `'insideBottom'`.
   
   This does not solve the problem that I have of managing the legend so that 
the total is recalculated


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] cnovelli commented on issue #17649: How to display sum stack bar in echarts with legend handling

2022-09-15 Thread GitBox


cnovelli commented on issue #17649:
URL: https://github.com/apache/echarts/issues/17649#issuecomment-1247775546

   > Puede apilar otra serie de barras con fondo transparente y establecer la 
posición de la etiqueta para que sea `'insideBottom'`.
   
   This does not solve the problem that I have of managing the legend so that 
the total is recalculated


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] echarts-bot[bot] commented on issue #17642: [Bug] 关系图circular,节点四个时,中间的连线曲率失效

2022-09-15 Thread GitBox


echarts-bot[bot] commented on issue #17642:
URL: https://github.com/apache/echarts/issues/17642#issuecomment-1247772985

   @cyrna Please provide a demo for the issue either with [Official 
Editor](https://echarts.apache.org/examples/editor.html), 
[CodePen](https://codepen.io/Ovilia/pen/dyYWXWM), 
[CodeSandbox](https://codesandbox.io/s/echarts-basic-example-template-mpfz1s) 
or [JSFiddle](https://jsfiddle.net/plainheart/e46ozpqj/7/).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] echarts-bot[bot] commented on issue #17644: [Bug] Heatmap value overflow: 'truncate' not dynamic

2022-09-15 Thread GitBox


echarts-bot[bot] commented on issue #17644:
URL: https://github.com/apache/echarts/issues/17644#issuecomment-1247771384

   This issue is labeled with `difficulty: easy`.
   @MeMeMax Would you like to debug it by yourself? This is a quicker way to 
get your problem fixed. Or you may wait for the community to fix.
   
   Please have a look at [How to debug 
ECharts](https://github.com/apache/echarts/blob/master/CONTRIBUTING.md#how-to-debug-echarts)
 if you'd like to give a try. 🤓


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] echarts-bot[bot] closed issue #17648: [Bug] visualMap实现折线颜色渐变渲染问题

2022-09-15 Thread GitBox


echarts-bot[bot] closed issue #17648: [Bug] visualMap实现折线颜色渐变渲染问题
URL: https://github.com/apache/echarts/issues/17648


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] Ovilia commented on issue #17648: [Bug] visualMap实现折线颜色渐变渲染问题

2022-09-15 Thread GitBox


Ovilia commented on issue #17648:
URL: https://github.com/apache/echarts/issues/17648#issuecomment-1247768596

   Please follow #17138


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] Ovilia commented on issue #17649: How to display sum stack bar in echarts with legend handling

2022-09-15 Thread GitBox


Ovilia commented on issue #17649:
URL: https://github.com/apache/echarts/issues/17649#issuecomment-1247766437

   You can stack another bar series with transparent background and set label 
position to be `'insideBottom'`.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] Ovilia commented on issue #17650: [Bug] time axis labels Irregular interval

2022-09-15 Thread GitBox


Ovilia commented on issue #17650:
URL: https://github.com/apache/echarts/issues/17650#issuecomment-1247754982

   这个不是 bug,默认按可用宽度计算出的间距是一周的间隔,到了月底因为要显示 1 号位置,所以会出现不等分的情况。如果要强制每周显示,也就是不显示每月 
1 号,请关注 #17576 。


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] Ovilia commented on issue #17576: [Feature] Time axis interval

2022-09-15 Thread GitBox


Ovilia commented on issue #17576:
URL: https://github.com/apache/echarts/issues/17576#issuecomment-1247752930

   @pissang Yes, I've considered about the second problem. Another option would 
be to use `intervalUnit: 'day', interval: 7`, which may not be as intuitive as 
`'7 days'` but more rebust. Which one do you think is better?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[GitHub] [echarts] Veath commented on issue #11382: echarts中实现多个tooltip存在

2022-09-15 Thread GitBox


Veath commented on issue #11382:
URL: https://github.com/apache/echarts/issues/11382#issuecomment-1247738847

   
![image](https://user-images.githubusercontent.com/15187953/190350649-1279af8f-9ce5-477c-b75b-972165d785c8.png)
   场景如上,希望实现这个功能


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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