[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



[GitHub] [echarts] echarts-bot[bot] commented on pull request #17808: fix(type): add overflow property to AxisLabelBaseOption interface. close #17363

2022-10-26 Thread GitBox


echarts-bot[bot] commented on PR #17808:
URL: https://github.com/apache/echarts/pull/17808#issuecomment-1292968585

   Congratulations! Your PR has been merged. Thanks for your contribution! 


-- 
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 merged pull request #17808: fix(type): add overflow property to AxisLabelBaseOption interface. close #17363

2022-10-26 Thread GitBox


Ovilia merged PR #17808:
URL: https://github.com/apache/echarts/pull/17808


-- 
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 #17363: [Bug] echarts xAxis.axisLabel 配置, 缺少官方文档描述的 overflow 属性.

2022-10-26 Thread GitBox


Ovilia closed issue #17363: [Bug] echarts xAxis.axisLabel 配置, 缺少官方文档描述的 
overflow 属性.
URL: https://github.com/apache/echarts/issues/17363


-- 
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] H-C-Ping closed issue #17825: 极坐柱状图不能修改层级[Bug]

2022-10-26 Thread GitBox


H-C-Ping closed issue #17825: 极坐柱状图不能修改层级[Bug] 
URL: https://github.com/apache/echarts/issues/17825


-- 
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] H-C-Ping commented on issue #17825: 极坐柱状图不能修改层级[Bug]

2022-10-26 Thread GitBox


H-C-Ping commented on issue #17825:
URL: https://github.com/apache/echarts/issues/17825#issuecomment-1292951283

   > 或者更简单一点,有没有可能用`radiusAxis.inverse`的基础上,输入的数据逆序一下?
   
   确实可行,就是 数据如果发生变化改变了排序的时候,层级不会改变,不过现在的方法已经满足需求了,谢谢


-- 
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] 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



[GitHub] [echarts] echarts-bot[bot] commented on pull request #17792: fix(graph): draggable only work on force layout

2022-10-26 Thread GitBox


echarts-bot[bot] commented on PR #17792:
URL: https://github.com/apache/echarts/pull/17792#issuecomment-1292950642

   Congratulations! Your PR has been merged. Thanks for your contribution! 


-- 
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 merged pull request #17792: fix(graph): draggable only work on force layout

2022-10-26 Thread GitBox


Ovilia merged PR #17792:
URL: https://github.com/apache/echarts/pull/17792


-- 
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] H-C-Ping commented on issue #17825: 极坐柱状图不能修改层级[Bug]

2022-10-26 Thread GitBox


H-C-Ping commented on issue #17825:
URL: https://github.com/apache/echarts/issues/17825#issuecomment-1292950387

   > 或者更简单一点,有没有可能用`radiusAxis.inverse`的基础上,输入的数据逆序一下?
   
   谢谢, 确实行


-- 
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 #17817: [Feature] letterSpacing for axisLabel

2022-10-26 Thread GitBox


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

   
[CanvasRenderingContext2D.letterSpacing](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/letterSpacing)
 is still in experimental period and it seems [not to be well 
supported](https://caniuse.com/?search=letterSpacing)


-- 
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 #17822: [Bug] 手机端图表执行了mouse事件后,globalout事件不执行,这个怎么解决,版本5.1.2

2022-10-26 Thread GitBox


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

   @hanzhiqiangniuniu 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 #17825: 极坐柱状图不能修改层级[Bug]

2022-10-26 Thread GitBox


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

   或者更简单一点,有没有可能用 `radiusAxis.inverse` 的基础上,输入的 data 逆序一下?


-- 
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 #17825: 极坐柱状图不能修改层级[Bug]

2022-10-26 Thread GitBox


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

   需要提供一个新配置项,比如 `series.renderReversion`,从最后一个元素往前渲染


-- 
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 #17825: 极坐柱状图不能修改层级[Bug]

2022-10-26 Thread GitBox


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

   This issue is labeled with `difficulty: easy`.
   @H-C-Ping 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] fantasy525 closed issue #16181: [Feature] 增加tree symbolGap

2022-10-26 Thread GitBox


fantasy525 closed issue #16181: [Feature] 增加tree symbolGap
URL: https://github.com/apache/echarts/issues/16181


-- 
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 #17827: [Feature] 如何设置热力图的markline在x轴刻度左侧而不是两个刻度之间(即markline可偏移)

2022-10-26 Thread GitBox


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

   
https://echarts.apache.org/en/option.html#series-line.markLine.label.position 
这个可以解决吗


-- 
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 #17829: [Bug]

2022-10-26 Thread GitBox


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

   请修改标题,改为有信息量的


-- 
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 #17831: [Feature] link x and y axisPointers to snap to series

2022-10-26 Thread GitBox


echarts-bot[bot] closed issue #17831: [Feature] link x and y axisPointers to 
snap to series 
URL: https://github.com/apache/echarts/issues/17831


-- 
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 #17831: [Feature] link x and y axisPointers to snap to series

2022-10-26 Thread GitBox


Ovilia closed issue #17831: [Feature] link x and y axisPointers to snap to 
series 
URL: https://github.com/apache/echarts/issues/17831


-- 
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 #17831: [Feature] link x and y axisPointers to snap to series

2022-10-26 Thread GitBox


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

   Duplicate of #16675


-- 
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 #17832: [Feature] 多Y轴的显示,用于显示多通道波形图

2022-10-26 Thread GitBox


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

   https://echarts.apache.org/examples/en/editor.html?c=area-rainfall


-- 
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 #17832: [Feature] 多Y轴的显示,用于显示多通道波形图

2022-10-26 Thread GitBox


Ovilia closed issue #17832: [Feature] 多Y轴的显示,用于显示多通道波形图
URL: https://github.com/apache/echarts/issues/17832


-- 
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 #17833: [Bug]: Gap between axis symbol and axis line when symbolOffset is provided to avoid overlap of the symbol with max tick

2022-10-26 Thread GitBox


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

   This symbol can be customized and it may not always make sense to extend the 
axis line. You can use an SVG path containing the line in this 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 #17835: [Bug] Zoom on Bar with type value makes bar go out of bound overlapping axis

2022-10-26 Thread GitBox


Ovilia closed issue #17835: [Bug] Zoom on Bar with type value makes bar go out 
of bound overlapping axis
URL: https://github.com/apache/echarts/issues/17835


-- 
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 #17835: [Bug] Zoom on Bar with type value makes bar go out of bound overlapping axis

2022-10-26 Thread GitBox


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

   This problem has been discussed and we decide to take this as a feature 
rather than a bug. In this case, the x and y values are both inside the data 
zoom range so it is expected to be displayed. And we decide not to do the 
clip-path of the grid by design.


-- 
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 #17837: [Feature] Customize node in graph serie while using cartesian coordinates

2022-10-26 Thread GitBox


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

   Please check if [this 
example](https://echarts.apache.org/examples/en/editor.html?c=graph-grid) helps.


-- 
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 #17838: [Support] Plotting Pie charts or semi-circles on scatterplot

2022-10-26 Thread GitBox


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

   Can you provide an illustrator of what you want to make?


-- 
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 #17815: [Bug] 词云组件数据分类问题

2022-10-26 Thread GitBox


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

   这个不是 bug 吧,文档里也没有这个字段,应该是新需求?


-- 
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 #17781: [Bug] Custom series api.value returns NaN

2022-10-26 Thread GitBox


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

   After some research, I found that currently, if any of the first 5 data is 
guessed to be a number (e.g., `12.3`), the whole column is set to be in number 
type. We decide to keep this logic and developers are always encouraged to set 
the type of `dimensions`.


-- 
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 #17781: [Bug] Custom series api.value returns NaN

2022-10-26 Thread GitBox


Ovilia closed issue #17781: [Bug] Custom series api.value returns NaN
URL: https://github.com/apache/echarts/issues/17781


-- 
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 closed issue #17836: Download https://echarts.apache.org/examples/en/editor.html?c=graph-label-overlap does not get the data[Bug]

2022-10-26 Thread GitBox


plainheart closed issue #17836: Download 
https://echarts.apache.org/examples/en/editor.html?c=graph-label-overlap does 
not get the data[Bug] 
URL: https://github.com/apache/echarts/issues/17836


-- 
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] Allez-Gdy commented on issue #17823: [Bug] 在Android的webview 中访问图表页面,初始化页面后图表没有颜色(所有线条、点均为黑色)

2022-10-26 Thread GitBox


Allez-Gdy commented on issue #17823:
URL: https://github.com/apache/echarts/issues/17823#issuecomment-1292823741

   > Is it a virtual device? Does this issue exist on other mobiles?
   
   This problem exists on virtual machines and other mobile phones


-- 
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 #13423: 散点图的自定义图标功能在开启大数据量优化之后报错,无法绘制

2022-10-26 Thread GitBox


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

   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] github-actions[bot] commented on issue #13485: label标号重叠Label overlapping of sector graphs(Nested Pies chart)

2022-10-26 Thread GitBox


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

   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] github-actions[bot] commented on issue #13465: Clicking on chart after resizing doesn't work properly

2022-10-26 Thread GitBox


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

   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] github-actions[bot] commented on issue #13360: Apply Min Max Avg on filtered data along with the current feature: Border points connected to points outside graph (connected graph)

2022-10-26 Thread GitBox


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

   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] github-actions[bot] commented on issue #7525: axisLabel中的width和height无法使用百分比

2022-10-26 Thread GitBox


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

   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] arkim822 commented on issue #17838: [Support] Plotting Pie charts or semi-circles on scatterplot

2022-10-26 Thread GitBox


arkim822 commented on issue #17838:
URL: https://github.com/apache/echarts/issues/17838#issuecomment-1292615843

   I've figured out  a workaround for now and it a bit hacky.
   path = 'path://M0,20 a1,1 0 0,0 80,0'
   option = {
xAxis: {
data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
},
yAxis: {},
tooltip:{},
series: [
{
type: 'scatter',
data: [220, 182, 191, 234, 290, 330, 310],
symbolSize: 20,
symbol: path,
symbolKeepAspect: true,
symbolRotate:45,
symbolOffset: [4, 4],
color: 'orange'
},
{
type: 'scatter',
data: [220, 182, 191, 234, 290, 330, 310],
symbolSize: 20,
symbol: path,
symbolKeepAspect: true,
symbolOffset: [-4, -4],
symbolRotate: 225,
color: 'blue'
}
]
   Hope this comes in handy for someone else.


-- 
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] ergouser commented on issue #10130: dynamic chart memory leak

2022-10-26 Thread GitBox


ergouser commented on issue #10130:
URL: https://github.com/apache/echarts/issues/10130#issuecomment-1292301534

   The full html is in #7002.  That issue was reported 5 years ago against 3.x 
so may, or may not still exist.  I haven't tested against later versions.


-- 
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] arkim822 opened a new issue, #17838: [Support] Plotting Pie charts or semi-circles on scatterplot

2022-10-26 Thread GitBox


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

   ### What problem does this feature solve?
   
   Hello. First time posting here so apologies if I have not tagged this 
correctly. I am having a blast with Echarts and am in the process for building 
a dashboard that helps to understand **Immunohistochemical assay** data.
   
   I have gotten pretty far and one of the last visualizations users would like 
to see is a plot of semi-circles.
   
   Circle of two colors. Ex: Half red, half blue.
   
   I have looked through the examples pretty extensively (because they are just 
so beautiful) and found that maybe the plotting of small piecharts on a x-y 
coordinate plane is the way to go.
   
   https://echarts.apache.org/examples/en/editor.html?c=calendar-pie=ts
   
   I was wondering if anyone could weigh in on the feasibility of this or if 
it's even possible at all. If not, no problem! : )
   
   Thank you.
   
   
   ### What does the proposed API look like?
   
   https://echarts.apache.org/examples/en/editor.html?c=calendar-pie=ts


-- 
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] calogar opened a new issue, #17837: [Feature] Customize node in graph serie while using cartesian coordinates

2022-10-26 Thread GitBox


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

   ### What problem does this feature solve?
   
   Hello. I am using Echarts 5, and I am trying to create a graph with 
cartesian axes. However, when I assing "cartesian2d" as the "coordinateSystem", 
the data format specified [in the 
documentation](https://echarts.apache.org/en/option.html#series-graph.data) 
does not seem to apply anymore.
   
   Consider this example, which is **not working** for me:
   
   ```
   const data1 = [{
 x: 20,
 y: 16,
 id: 'A'
   }, {
 x: 5,
 y: 36,
 id: 'B',
 symbolSize: 30,
   }]
   
   const links1 = [
 { source: 'A', target: 'B'}
   ]
   
   option = {
 xAxis: {
   type: 'value',
 },
 yAxis: {
   type: 'value'
 },
 series: [
  {
 type: 'graph',
 coordinateSystem: 'cartesian2d',
 data: data2,
 links: links2,
   }
 ]
   };
   ```
   
   In that example, the axes appear as empty, but if I remove the 
`coordinateSystem: 'cartesian2d'` line, then the graph appears. In order to 
have my graph inside a cartesian coordinate system, I have to change the format 
of the data.
   
   ```
   const data2 = [
 [20, 16],
 [5, 36]
   ]
   
   const links2 = [
 { source: 0, target: 1}
   ]
   
   option = {
 xAxis: {
   type: 'value',
 },
 yAxis: {
   type: 'value'
 },
 series: [
   {
 type: 'graph',
 coordinateSystem: 'cartesian2d',
 data: data2,
 links: links2,
   }
 ]
   };
   ```
   
   This actually renders the graph inside a cartesian chart. But as I 
understand, like this **I am not able to set a specific symbolSize to one of 
the nodes**.
   
   If that is the case, I think it would make sense that I should not need to 
change the format of my data when a cartesian coordinate system is used. I 
mean, the model of the first example do have an "x" and "y" settings, why is 
this not understood by the cartesian coordinate system?
   
   Therefore, the feature request would be to **be able to use 
coordinateSystem: 'cartesian2d' and being able to customize each node of the 
graph serie at the same time**.
   
   ### What does the proposed API look like?
   
   The proposed api would be as follows (making data1 format compatible with a 
cartesian coordinate system):
   
   ```
   const data1 = [{
 x: 20,
 y: 16,
 id: 'A'
   }, {
 x: 5,
 y: 36,
 id: 'B',
 symbolSize: 30,
   }]
   
   const links1 = [
 { source: 'A', target: 'B'}
   ]
   
   option = {
 xAxis: {
   type: 'value',
 },
 yAxis: {
   type: 'value'
 },
 series: [
  {
 type: 'graph',
 coordinateSystem: 'cartesian2d',
 data: data2,
 links: links2,
   }
 ]
   };
   ```


-- 
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] plainheart commented on issue #17836: Download https://echarts.apache.org/examples/en/editor.html?c=graph-label-overlap does not get the data[Bug]

2022-10-26 Thread GitBox


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

   It's caused by the CORS policy of the browser. You can download the data 
resource with the URL.


-- 
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] MrCoolLion opened a new issue, #17836: Download https://echarts.apache.org/examples/en/editor.html?c=graph-label-overlap does not get the data[Bug]

2022-10-26 Thread GitBox


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

   ### Version
   
   5.4.0
   
   ### Link to Minimal Reproduction
   
   https://echarts.apache.org/examples/en/editor.html?c=graph-label-overlap
   
   ### Steps to Reproduce
   
   Download file from 
https://echarts.apache.org/examples/en/editor.html?c=graph-label-overlap.
   Run in the browser (Windows 11 Chrome) and it will keep showing loading.
   It does not seem to be able to get the data.
   
   ### Current Behavior
   
   Run in the browser (Windows 11 Chrome) and it will keep showing loading.
   It does not seem to be able to get the data.
   
   ### Expected Behavior
   
   It should retreive the data from 
https://echarts.apache.org/examples/data/asset/data/les-miserables.json and 
show the graph.
   
   ### Environment
   
   ```markdown
   - OS: Windows 11
   - Browser: Chrome Version 106.0.5249.119 (Official build) (64-bits)
   - 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] githubdatabridge commented on issue #15289: Label not rendering correctly in Gantt Chart inside the bars

2022-10-26 Thread GitBox


githubdatabridge commented on issue #15289:
URL: https://github.com/apache/echarts/issues/15289#issuecomment-1291914333

   @Ovilia any update on this?


-- 
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] wssll789 closed issue #17834: [Bug] tooltip repeat rendering

2022-10-26 Thread GitBox


wssll789 closed issue #17834: [Bug]  tooltip repeat rendering
URL: https://github.com/apache/echarts/issues/17834


-- 
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] oldRabbitForz commented on issue #4726: echarts内存泄露

2022-10-26 Thread GitBox


oldRabbitForz commented on issue #4726:
URL: https://github.com/apache/echarts/issues/4726#issuecomment-1291886008

   > 那发个完整的例子看下?
   
   demo哥,又看到你在要demo了


-- 
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] oldRabbitForz commented on issue #7237: echarts3 折线图 动态加载 内存问题

2022-10-26 Thread GitBox


oldRabbitForz commented on issue #7237:
URL: https://github.com/apache/echarts/issues/7237#issuecomment-1291885172

   > 有具体的可以复现的项目文件么?
   
   demo哥,你不是在要demo,就是在要demo的路上


-- 
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] oldRabbitForz commented on issue #10130: dynamic chart memory leak

2022-10-26 Thread GitBox


oldRabbitForz commented on issue #10130:
URL: https://github.com/apache/echarts/issues/10130#issuecomment-1291884445

   > Hi @ergouser Can you create a new issue and provide your reproducible demo 
to us? We can't reproduce the memory leak issue from the code in #7002 and the 
link in this issue has been broken
   你不是在要demo,就是在要demo的路上


-- 
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] oldRabbitForz commented on issue #14294: 内存溢出如何解决

2022-10-26 Thread GitBox


oldRabbitForz commented on issue #14294:
URL: https://github.com/apache/echarts/issues/14294#issuecomment-1291861574

   > 正常这样不应该会存在内存泄漏,不过建议最好还是能够发我们一个可以复现的离线 demo 以及相关环境
   
   每一篇帖子都在要demo,要了好几年了,问题都没解决掉


-- 
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] AdamSogeti opened a new issue, #17835: [Bug] Zoom on Bar with type value makes bar go out of bound overlapping axis

2022-10-26 Thread GitBox


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

   ### Version
   
   5.2.1
   
   ### Link to Minimal Reproduction
   
   
https://echarts.apache.org/examples/en/editor.html?c=bar-tick-align=PYBwLglsB2AEC8sDeAoWszGAG0iAXMmuhgE4QDmFApqYQOQCGAHhAM70A0x6L7ACsAjQwtQqhIkwATxDUGbABaMAJsADu9HrAC-xHd3QVyK8duzUAZmAYBmAKRdt5Copux6AFkeGSAI2AwTABbOx9tAGMYMEZhABlGP2psQjBSAFdqfV8VRhiALSxQ2ABtbQlJWEsIXFoAWWAVeQ9q2tInStgIUw9cgqKADQ7KmTkGYTZu6mHJZgBBVjYASWgm5kISgAZOAEYAXW0Dcu10VtFSBqaGM9oZkm6GPsZC4GCATTv0Ueb6CanP2DSBbsFZrDbbWD7Q7EPa-eaLDbHTrfBgAN0Y2EyAL4bAAKhAIgBrMydXjYSjQADqEDAigSSRSZEyJ100PQsOIQIRpSRI1kP3RmOmbNgHPQbFoEGobERkgqkmgjGCPwAIhBSNQImAASiPH5GO1fJJ9aRqSpaQwAGybcKdJ4bHacWAAJidtidnidAFYnZanQB2J0ADidAE4DpI9OyUDoANxAA
   
   ### Steps to Reproduce
   
   Use the link above, or set up a bar chart with the x-axis having `type: 
value` and some simple data. Try to zoom in and you will see that the bars 
overlap the y-axis when zooming in. When changing type of the x-axis property 
to `category` you will see it does work correctly again.
   
   ### Current Behavior
   
   the bars overlap the y-axis when zooming
   
   ### Expected Behavior
   
   The bar disappears when it's out of range of the displayed values instead of 
overlapping the y-axis
   
   ### Environment
   
   ```markdown
   - OS: windows 10
   - Browser: microsoft edge
   - Framework: React
   ```
   
   
   ### 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] plainheart commented on issue #17823: [Bug] 在Android的webview 中访问图表页面,初始化页面后图表没有颜色(所有线条、点均为黑色)

2022-10-26 Thread GitBox


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

   Is it a virtual device? Does this issue exist on other mobiles?


-- 
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 #17834: [Bug] tooltip repeat rendering

2022-10-26 Thread GitBox


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

   The tooltip will empty the previous content on each render. In this case, 
you should create DOM outside the formatter callback and return it. BTW, the 
"repeated rendering" generally occurs only when the cache is disabled, for 
example, you opened the devtools and enabled `Disable cache` or the image URL 
or its query parameter is changed.


-- 
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] branch dev updated (bf1c93c5 -> 9ab8f54f)

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

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


from bf1c93c5 Merge pull request #305 from apache/master
 add acb10e33 feat(sankey): add doc for sankey `edgeLabel`
 add 6a156169 fix(sankey): improve doc for sankey `edgeLabel`
 new 9ab8f54f Merge pull request #304 from apache/sankey-edge-label

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/sankey.md | 76 ++
 zh/option/series/sankey.md | 76 ++
 2 files changed, 114 insertions(+), 38 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 #304 from apache/sankey-edge-label

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

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

commit 9ab8f54ff701d45b14b7820fb63cc38e15ac3272
Merge: bf1c93c5 6a156169
Author: Zhongxiang Wang 
AuthorDate: Wed Oct 26 18:34:45 2022 +0800

Merge pull request #304 from apache/sankey-edge-label

feat(sankey): add doc for sankey `edgeLabel`

 en/option/series/sankey.md | 76 ++
 zh/option/series/sankey.md | 76 ++
 2 files changed, 114 insertions(+), 38 deletions(-)


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



[GitHub] [echarts-doc] plainheart merged pull request #304: feat(sankey): add doc for sankey `edgeLabel`

2022-10-26 Thread GitBox


plainheart merged PR #304:
URL: https://github.com/apache/echarts-doc/pull/304


-- 
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] branch sankey-edge-label updated (2dae3292 -> 6a156169)

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

wangzx pushed a change to branch sankey-edge-label
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


omit 2dae3292 feat(sankey): add doc for sankey `edgeLabel`
 add bf1c93c5 Merge pull request #305 from apache/master
 add acb10e33 feat(sankey): add doc for sankey `edgeLabel`
 add 6a156169 fix(sankey): improve doc for sankey `edgeLabel`

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (2dae3292)
\
 N -- N -- N   refs/heads/sankey-edge-label (6a156169)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 en/option/series/sankey.md | 82 ++
 zh/option/series/sankey.md | 82 ++
 2 files changed, 106 insertions(+), 58 deletions(-)


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



[GitHub] [echarts] Allez-Gdy commented on issue #17823: [Bug] 在Android的webview 中访问图表页面,初始化页面后图表没有颜色(所有线条、点均为黑色)

2022-10-26 Thread GitBox


Allez-Gdy commented on issue #17823:
URL: https://github.com/apache/echarts/issues/17823#issuecomment-1291804159

   > Could you provide the UA of the webview (via `navigator.userAgent`) and 
the system information of the mobile? And is it working if you use the SVG 
renderer instead of the Canvas renderer?
   
   + navigator.userAgent:  Mozilla/5.0 (Linux; Android 11; Android SDK built 
for x86 Build/RSR1.210210.001.A1; wv) AppleWebKit/537.36 (KHTML, like Gecko) 
Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36.
   
   + system information: Android11
   + Using the SVG renderer has no effect.
   
   
   


-- 
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] wssll789 commented on issue #17834: [Bug] tooltip repeat rendering

2022-10-26 Thread GitBox


wssll789 commented on issue #17834:
URL: https://github.com/apache/echarts/issues/17834#issuecomment-1291730232

   formatter: function(params) {
   return ``;
   }


-- 
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] wssll789 opened a new issue, #17834: [Bug] tooltip repeat rendering

2022-10-26 Thread GitBox


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

   ### Version
   
   5.2.2
   
   ### Link to Minimal Reproduction
   
   _No response_
   
   ### Steps to Reproduce
   
   1.triggerOn=mousemove
   2.formatter: function(params) {
   return ;
}
   3.Viewing Network Requests
   
   
   
   ### Current Behavior
   
   Render should not be repeated on the same data
   
   ### Expected Behavior
   
   Render should not be repeated on the same data
   
   ### 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] plainheart commented on issue #17823: [Bug] 在Android的webview 中访问图表页面,初始化页面后图表没有颜色(所有线条、点均为黑色)

2022-10-26 Thread GitBox


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

   Could you provide the UA of the webview (via `navigator.userAgent`) and the 
system information of the mobile?


-- 
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] Allez-Gdy commented on issue #17823: [Bug] 在Android的webview 中访问图表页面,初始化页面后图表没有颜色(所有线条、点均为黑色)

2022-10-26 Thread GitBox


Allez-Gdy commented on issue #17823:
URL: https://github.com/apache/echarts/issues/17823#issuecomment-1291702579

   > @Allez-Gdy 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/).
   
   I don't know if I was asked to provide such an example.
   https://jsfiddle.net/3uwxmycf/19/


-- 
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] Allez-Gdy commented on issue #17823: [Bug] 在Android的webview 中访问图表页面,初始化页面后图表没有颜色(所有线条、点均为黑色)

2022-10-26 Thread GitBox


Allez-Gdy commented on issue #17823:
URL: https://github.com/apache/echarts/issues/17823#issuecomment-1291670248

   Configuration items for this problem ↓
   No problems in the browser.
   The problem occurs in the webview of Android.
   I don't know how to provide intuitive examples.
   If I do not set itemStyle Color, then no problem will occur.
   I don't know whether it is a configuration item problem.
   I hope I can get help,thanks
   
   ``` 
   option = {
   gri d: {
 top: 35
   },
   tooltip: {
 trigger: 'axis',
 axisPointer: {
   type: 'line',
   lineStyle: {
 color: '#83ABEEFF',
 width: 1.5,
 type: 'solid'
   }
 },
   
 position: function (point, params, dom, rect, size) {
   let x = point[0] - size.contentSize[0] + 5 < 0 ? 0 : point[0] - 
size.contentSize[0] + 5
   let y = point[1] - size.contentSize[1] - 15 < 0 ? 0 : point[1] - 
size.contentSize[1] - 15
   return [x, y];
 },
   
 formatter: function (params) {
   let month = ''
   let day = isNaN(params[0].axisValue) ? '1' : params[0].axisValue
   for (let i = params[0].dataIndex; i >= 0; i--) {
 if (isNaN(_this.data.date[i])) {
   month = _this.data.date[i]
   break
 }
   }
   
   let reqTime = _this.data.datas[params[0].dataIndex]
   console.log(reqTime);
   let year = reqTime !== null ? ',' + reqTime.time.split('-')[0] : 
''
   let time = reqTime !== null ? reqTime.time.split(' ')[1] : ''
   let returnData = `${month}. ${day}${year} ${time}`
   for (let i = 0; i < params.length; i++) {
 let indexColor = params[i].color
 console.log(indexColor);
 returnData += ``
 returnData += `${params[i].seriesName}: ${params[i].value !== undefined ? 
params[i].value : '-'} mg/L`
   }
   return reqTime ? returnData : null
 },
   },
   legend: {
 data: [],
   },
   xAxis: {
 data: this.data.date,
 axisLine: {
   lineStyle: {
 color: '#99B5BBFF',  
 type: 'dashed'
   }
 },
 axisLabel: {
   fontWeight: ''
 },
 axisTick: {
   show: false
 },
   },
   yAxis: {
 show: true,
 name: 'mg/L',
 axisLine: {
   show: true,
   lineStyle: {
 color: '#99B5BBFF', 
 type: 'dashed'
   }
 },
 axisLabel: {
   fontWeight: 'bold'
 },
 // 辅助线x
 splitLine: {
   show: false
 }
   },
   series: [
 // saa 
 (this.queryDate.type === 'all' || this.queryDate.type === 'saa') 
&& {
   name: 'SAA',
   type: "line",
   data: this.filterData('saaValue'),
   symbol: 'circle',
   itemStyle: {
 color: '#85DE2BFF',
   },
   // 标准线
   markLine: {
 silent: true,
 symbol: ['none', 'none'],
 lineStyle: {
   // color: '#99B5BBFF'
   // color: 'rgba(133, 222, 43, 1)'
 },
 data: [{
   yAxis: 10
 }],
 label: {
   show: true,
   position: 'insideEndBottom',
   formatter: 'standard', // reference normal line
   color: '#99B5BBFF'
 },
   },
 },
 // crp 
 (this.queryDate.type === 'all' || this.queryDate.type === 'crp') 
&& {
   name: 'CRP',
   type: "line",
   data: this.filterData('crpValue'),
   symbol: 'circle',
   itemStyle: {
 // color: '#FFA679FF',
 // color: 'rgba(255, 166, 121, 1)'
   },
   markLine: {
 silent: true,
 symbol: ['none', 'none'],
 lineStyle: {
   color: '#99B5BBFF'
 },
 data: [{
   yAxis: 10
 }],
 label: {
   show: true,
   position: 'insideEndBottom',
   formatter: 'standard',
   color: '#99B5BBFF'
 },
   }
 },
   ],
 };
   ``` 


-- 
This is an automated 

[GitHub] [echarts] plainheart commented on issue #17829: [Bug]

2022-10-26 Thread GitBox


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

   @meicen0208 这个可以通过关闭系列和 legend 的联动来做到。 
参见:[`legendHoverLink`](https://echarts.apache.org/option.html#series-bar.legendHoverLink)


-- 
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] jaykumar-parmar opened a new issue, #17833: [Bug]: Gap between axis symbol and axis line when symbolOffset is provided to avoid overlap of the symbol with max tick

2022-10-26 Thread GitBox


jaykumar-parmar opened a new issue, #17833:
URL: https://github.com/apache/echarts/issues/17833

   ### Version
   
   5.47
   
   ### Link to Minimal Reproduction
   
   _No response_
   
   ### Steps to Reproduce
   
   Follow the link to reproduce the issue.
   
   
   ### Current Behavior
   
   Gap is seen between axis line & axis symbol
   
![image](https://user-images.githubusercontent.com/14372061/197964680-e115bc55-61a4-4ff0-9b1e-784a073b2287.png)
   
   
   ### Expected Behavior
   
   Expectation is axis line is extended as following to prevent gap
   
![image](https://user-images.githubusercontent.com/14372061/197965138-81794376-44af-4422-9214-64aa3508f609.png)
   
   
   ### 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] chenweihan opened a new issue, #17832: [Feature] 多Y轴的显示,用于显示多通道波形图

2022-10-26 Thread GitBox


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

   ### What problem does this feature solve?
   
   比如 在信号分析领域,需要使用多Y轴查看波形图,支持放大缩小等   
   
   ### What does the proposed API look like?
   
   可以查看EDFbrower,查看信号图


-- 
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] mountainash closed issue #17744: [Bug] Scatter has poor redraw with large number of Points

2022-10-26 Thread GitBox


mountainash closed issue #17744: [Bug] Scatter has poor redraw with large 
number of Points
URL: https://github.com/apache/echarts/issues/17744


-- 
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] ZhaoPengP commented on issue #3976: setOption时,如何重新设置(或清除)所有Series

2022-10-26 Thread GitBox


ZhaoPengP commented on issue #3976:
URL: https://github.com/apache/echarts/issues/3976#issuecomment-1291546507

   
使用myChart.clear();然后myChart.setOption()这样对于性能有没有友好一点,或者对于myChart.setOption(chartOption,true);这样的方式提升并没有多少,有没有给出实际的一个数据?


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