[echarts] branch fix-label-z created (now c152d91)

2021-03-27 Thread wangzx
This is an automated email from the ASF dual-hosted git repository.

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


  at c152d91  fix(label): fix labels are not on the top bug.

This branch includes the following new commits:

 new c152d91  fix(label): fix labels are not on the top bug.

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


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



[echarts] 01/01: fix(label): fix labels are not on the top bug.

2021-03-27 Thread wangzx
This is an automated email from the ASF dual-hosted git repository.

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

commit c152d9129784385e3c18504f10cfbdad917b3bcf
Author: plainheart 
AuthorDate: Sat Mar 27 14:45:30 2021 +0800

fix(label): fix labels are not on the top bug.
---
 src/chart/line/LineView.ts |  5 
 src/core/echarts.ts| 60 +++---
 2 files changed, 40 insertions(+), 25 deletions(-)

diff --git a/src/chart/line/LineView.ts b/src/chart/line/LineView.ts
index 10b0b26..3721ded 100644
--- a/src/chart/line/LineView.ts
+++ b/src/chart/line/LineView.ts
@@ -840,6 +840,11 @@ class LineView extends ChartView {
 seriesModel.get('zlevel'),
 seriesModel.get('z')
 );
+
+// ensure label text of the temporal symbol is on the top of 
line and area polygon
+const symbolLabel = symbol.getSymbolPath().getTextContent();
+symbolLabel && (symbolLabel.z = this._polyline.z + 1);
+
 (symbol as SymbolExtended).__temp = true;
 data.setItemGraphicEl(dataIndex, symbol);
 
diff --git a/src/core/echarts.ts b/src/core/echarts.ts
index b272247..95bd8ff 100644
--- a/src/core/echarts.ts
+++ b/src/core/echarts.ts
@@ -2157,34 +2157,44 @@ class ECharts extends Eventful {
 if (model.preventAutoZ) {
 return;
 }
-const z = model.get('z');
-const zlevel = model.get('zlevel');
 // Set z and zlevel
-view.group.traverse(function (el: Displayable) {
-if (!el.isGroup) {
-z != null && (el.z = z);
-zlevel != null && (el.zlevel = zlevel);
-
-// TODO if textContent is on group.
-const label = el.getTextContent();
-const labelLine = el.getTextGuideLine();
-if (label) {
-label.z = el.z;
-label.zlevel = el.zlevel;
-// lift z2 of text content
-// TODO if el.emphasis.z2 is spcefied, what about 
textContent.
-label.z2 = el.z2 + 2;
-}
-if (labelLine) {
-const showAbove = el.textGuideLineConfig && 
el.textGuideLineConfig.showAbove;
-labelLine.z = el.z;
-labelLine.zlevel = el.zlevel;
-labelLine.z2 = el.z2 + (showAbove ? 1 : -1);
-}
-}
-});
+_updateZ(view.group, model.get('z'), model.get('zlevel'));
 };
 
+function _updateZ(el: Element, z: number, zlevel: number) {
+// Group may also have textContent
+const label = el.getTextContent();
+const labelLine = el.getTextGuideLine();
+const isGroup = el.isGroup;
+
+// always set z and zlevel if label/labelLine exists
+if (label || labelLine) {
+if (label) {
+label.z = z + 1;
+label.zlevel = zlevel;
+// lift z2 of text content
+// TODO if el.emphasis.z2 is spcefied, what about 
textContent.
+isGroup || (label.z2 = (el as Displayable).z2 + 2);
+}
+else {
+const showAbove = el.textGuideLineConfig && 
el.textGuideLineConfig.showAbove;
+labelLine.z = z + 1;
+labelLine.zlevel = zlevel;
+isGroup || (labelLine.z2 = (el as Displayable).z2 + 
(showAbove ? 1 : -1));
+}
+}
+
+if (isGroup) {
+// set z & zlevel of children elements of Group
+el.traverse((childEl: Element) => _updateZ(childEl, z, 
zlevel));
+}
+else {
+// not Group
+z != null && ((el as Displayable).z = z);
+zlevel != null && ((el as Displayable).zlevel = zlevel);
+}
+}
+
 // Clear states without animation.
 // TODO States on component.
 function clearStates(model: ComponentModel, view: ComponentView | 
ChartView): void {

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



[echarts] branch fix-label-z updated: revert(sankey): revert the changes made by #14417.

2021-03-27 Thread wangzx
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/fix-label-z by this push:
 new 0910200  revert(sankey): revert the changes made by #14417.
0910200 is described below

commit 091020009c168128327b96bdffe83ffad25196ab
Author: plainheart 
AuthorDate: Sat Mar 27 15:17:12 2021 +0800

revert(sankey): revert the changes made by #14417.
---
 src/chart/sankey/SankeyView.ts | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/chart/sankey/SankeyView.ts b/src/chart/sankey/SankeyView.ts
index 258a92b..5d317fe 100644
--- a/src/chart/sankey/SankeyView.ts
+++ b/src/chart/sankey/SankeyView.ts
@@ -250,8 +250,7 @@ class SankeyView extends ChartView {
 width: layout.dx,
 height: layout.dy
 },
-style: itemModel.getModel('itemStyle').getItemStyle(),
-z2: 10
+style: itemModel.getModel('itemStyle').getItemStyle()
 });
 
 setLabelStyle(
@@ -340,4 +339,4 @@ function createGridClipShape(rect: RectLike, seriesModel: 
SankeySeriesModel, cb:
 return rectEl;
 }
 
-export default SankeyView;
\ No newline at end of file
+export default SankeyView;

-
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 #14542: fix(label): fix labels are not on the top bug.

2021-03-27 Thread GitBox


echarts-bot[bot] commented on pull request #14542:
URL: https://github.com/apache/echarts/pull/14542#issuecomment-808678800


   Thanks for your contribution!
   The community will review it ASAP. In the meanwhile, please checkout [the 
coding standard](https://echarts.apache.org/en/coding-standard.html) and Wiki 
about [How to make a pull 
request](https://github.com/apache/echarts/wiki/How-to-make-a-pull-request).
   
   The pull request is marked to be `PR: author is committer` because you are a 
committer of this project.


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

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 opened a new pull request #14542: fix(label): fix labels are not on the top bug.

2021-03-27 Thread GitBox


plainheart opened a new pull request #14542:
URL: https://github.com/apache/echarts/pull/14542


   
   
   ## Brief Information
   
   This pull request is in the type of:
   
   - [x] bug fixing
   - [ ] new feature
   - [ ] others
   
   
   
   ### What does this PR do?
   
   
   
   Fix a bug that label is not on the top of line/area, which is affecting many 
cases of the label.
   
   ### Fixed issues
   
   - #14541
   - #14287
   - #14417 (revert)
   - #14202 (tweak)
   
   ## Details
   
   ### Before: What was the problem?
   
   
   
   
   
   
   
   ### After: How is it fixed in this PR?
   
   
   
   
   
   
   
   ## Usage
   
   ### Are there any API changes?
   
   - [ ] The API has been changed.
   
   
   
   
   
   ### Related test cases or examples to use the new APIs
   
   Please refer to
   - test/sankey-*.html
   - test/markline.html
   - The demos above
   
   ## Others
   
   ### Merging options
   
   - [ ] Please squash the commits into a single one when merge.
   
   ### Other information
   


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

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] fezhangyao commented on issue #14519: In the highlight action, if the type of "seriesName" is set to array, only one series will be highlighted

2021-03-27 Thread GitBox


fezhangyao commented on issue #14519:
URL: https://github.com/apache/echarts/issues/14519#issuecomment-808683098


   > @fezhangyao Please provide a demo for the issue either with 
https://codepen.io/Ovilia/pen/dyYWXWM , https://www.makeapie.com/editor.html or 
https://codesandbox.io/s/mystifying-bash-2uthz.
   
   https://codesandbox.io/s/festive-murdock-weydf?from-embed


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

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] fezhangyao removed a comment on issue #14519: In the highlight action, if the type of "seriesName" is set to array, only one series will be highlighted

2021-03-27 Thread GitBox


fezhangyao removed a comment on issue #14519:
URL: https://github.com/apache/echarts/issues/14519#issuecomment-808683098






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

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] fezhangyao commented on issue #14519: In the highlight action, if the type of "seriesName" is set to array, only one series will be highlighted

2021-03-27 Thread GitBox


fezhangyao commented on issue #14519:
URL: https://github.com/apache/echarts/issues/14519#issuecomment-808684129


   > @fezhangyao Please provide a demo for the issue either with 
https://codepen.io/Ovilia/pen/dyYWXWM , https://www.makeapie.com/editor.html or 
https://codesandbox.io/s/mystifying-bash-2uthz.
   
   https://codesandbox.io/s/awesome-sun-ey7f9?file=/src/index.js


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

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 master updated: fix state animation in en doc

2021-03-27 Thread shenyi
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new ffc4da3  fix state animation in en doc
ffc4da3 is described below

commit ffc4da3e8a15b5986b0a7f98c13cea0ba5f5c03f
Author: pissang 
AuthorDate: Sat Mar 27 19:47:36 2021 +0800

fix state animation in en doc
---
 en/option/option.md | 8 
 1 file changed, 8 insertions(+)

diff --git a/en/option/option.md b/en/option/option.md
index 23e8493..e8ddad5 100644
--- a/en/option/option.md
+++ b/en/option/option.md
@@ -76,6 +76,14 @@ Global font style.
 
 {{import: partial-animation }}
 
+# stateAnimation(Object)
+
+Animation configurations of state switchment. Can be configured in each series 
individually.
+
+{{use: partial-state-animation(
+prefix = '#'
+) }}
+
 # blendMode(string) = 'source-over'
 
 Sets the type of compositing operation to apply when drawing a new shape. See 
the different type: 
https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/globalCompositeOperation.

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



[GitHub] [echarts] jiarouy opened a new issue #14543: lines3D绘制航线(不是飞线) 鼠标事件

2021-03-27 Thread GitBox


jiarouy opened a new issue #14543:
URL: https://github.com/apache/echarts/issues/14543


   ### Version
   5.0.2
   
   ### Steps to reproduce
   .on添加监听
   
   ### What is expected?
   响应鼠标事件 , 配置中 有 silent 这一项 是否代表默认就是响应事件的?
   
   ### What is actually happening?
   毫无反应
   
   
   


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

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 #14543: lines3D绘制航线(不是飞线) 鼠标事件

2021-03-27 Thread GitBox


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






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

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] susiwen8 closed pull request #14202: Fix(markline): markline label should have higher z

2021-03-27 Thread GitBox


susiwen8 closed pull request #14202:
URL: https://github.com/apache/echarts/pull/14202


   


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

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 fix/geo-svg updated (c35a522 -> 9c2cb8e)

2021-03-27 Thread sushuang
This is an automated email from the ASF dual-hosted git repository.

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


from c35a522  fix: [tooltip] (1) add missing test:visual (2) fix tooltip 
component default position: should apply `position` on option firstly.
 new c2d7873  fix: [blur] make API trigger emphasis blur correct (should 
leave blur firstly for other series).
 new 9c2cb8e  fix: tweak the last commit.

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


Summary of changes:
 src/core/echarts.ts   | 22 +
 src/util/states.ts| 43 -
 test/hoverFocus2.html | 88 +++
 test/runTest/actions/__meta__.json|  2 +-
 test/runTest/actions/hoverFocus2.json |  2 +-
 5 files changed, 122 insertions(+), 35 deletions(-)

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



[echarts] 01/02: fix: [blur] make API trigger emphasis blur correct (should leave blur firstly for other series).

2021-03-27 Thread sushuang
This is an automated email from the ASF dual-hosted git repository.

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

commit c2d78733eedd47d11b5623a3a867fcf4acbb14a9
Author: 100pah 
AuthorDate: Thu Mar 25 13:02:00 2021 +0800

fix: [blur] make API trigger emphasis blur correct (should leave blur 
firstly for other series).
---
 src/core/echarts.ts   | 14 +++---
 src/util/states.ts| 43 +
 test/hoverFocus2.html | 88 +++
 test/runTest/actions/__meta__.json|  2 +-
 test/runTest/actions/hoverFocus2.json |  2 +-
 5 files changed, 117 insertions(+), 32 deletions(-)

diff --git a/src/core/echarts.ts b/src/core/echarts.ts
index fc96e69..a9d7103 100644
--- a/src/core/echarts.ts
+++ b/src/core/echarts.ts
@@ -41,7 +41,7 @@ import {
 isHighDownDispatcher,
 HOVER_STATE_EMPHASIS,
 HOVER_STATE_BLUR,
-toggleSeriesBlurState,
+blurSeries,
 toggleSeriesBlurStateFromPayload,
 toggleSelectionFromPayload,
 updateSeriesElementSelection,
@@ -59,7 +59,8 @@ import {
 leaveBlur,
 enterSelect,
 leaveSelect,
-enterBlur
+enterBlur,
+allLeaveBlur
 } from '../util/states';
 import * as modelUtil from '../util/model';
 import {throttle} from '../util/throttle';
@@ -1898,8 +1899,8 @@ class ECharts extends Eventful {
 const ecData = getECData(dispatcher);
 // Try blur all in the related series. Then emphasis the 
hoverred.
 // TODO. progressive mode.
-toggleSeriesBlurState(
-ecData.seriesIndex, ecData.focus, ecData.blurScope, 
ecIns._api, true
+blurSeries(
+ecData.seriesIndex, ecData.focus, ecData.blurScope, 
ecIns._api
 );
 enterEmphasisWhenMouseOver(dispatcher, e);
 
@@ -1909,10 +1910,7 @@ class ECharts extends Eventful {
 const el = e.target;
 const dispatcher = findEventDispatcher(el, 
isHighDownDispatcher);
 if (dispatcher) {
-const ecData = getECData(dispatcher);
-toggleSeriesBlurState(
-ecData.seriesIndex, ecData.focus, ecData.blurScope, 
ecIns._api, false
-);
+allLeaveBlur(ecIns._api);
 
 leaveEmphasisWhenMouseOut(dispatcher, e);
 
diff --git a/src/util/states.ts b/src/util/states.ts
index 2136fd7..31b5367 100644
--- a/src/util/states.ts
+++ b/src/util/states.ts
@@ -388,7 +388,7 @@ function shouldSilent(el: Element, e: ElementEvent) {
 return (el as ExtendedElement).__highDownSilentOnTouch && e.zrByTouch;
 }
 
-function allLeaveBlur(api: ExtensionAPI) {
+export function allLeaveBlur(api: ExtensionAPI) {
 const model = api.getModel();
 model.eachComponent(function (componentType, componentModel) {
 const view = componentType === 'series'
@@ -401,12 +401,11 @@ function allLeaveBlur(api: ExtensionAPI) {
 });
 }
 
-export function toggleSeriesBlurState(
+export function blurSeries(
 targetSeriesIndex: number,
 focus: InnerFocus,
 blurScope: BlurScope,
-api: ExtensionAPI,
-isBlur: boolean
+api: ExtensionAPI
 ) {
 const ecModel = api.getModel();
 blurScope = blurScope || 'coordinateSystem';
@@ -418,11 +417,6 @@ export function toggleSeriesBlurState(
 }
 }
 
-if (!isBlur) {
-allLeaveBlur(api);
-return;
-}
-
 if (targetSeriesIndex == null) {
 return;
 }
@@ -512,19 +506,24 @@ export function toggleSeriesBlurStateFromPayload(
 el = data.getItemGraphicEl(current++);
 }
 }
-if (el) {
-const ecData = getECData(el);
-toggleSeriesBlurState(
-seriesIndex, ecData.focus, ecData.blurScope, api, isHighlight
-);
-}
-else {
-// If there is no element put on the data. Try getting it from raw 
option
-// TODO Should put it on seriesModel?
-const focus = seriesModel.get(['emphasis', 'focus']);
-const blurScope = seriesModel.get(['emphasis', 'blurScope']);
-if (focus != null) {
-toggleSeriesBlurState(seriesIndex, focus, blurScope, api, 
isHighlight);
+
+allLeaveBlur(api);
+
+if (isHighlight) {
+if (el) {
+const ecData = getECData(el);
+blurSeries(
+seriesIndex, ecData.focus, ecData.blurScope, api
+);
+}
+else {
+// If there is no element put on the data. Try getting it from raw 
option
+// TODO Should put it on seriesModel?
+const focus = seriesModel.get(['emphasis', 'focus']);
+const blurScope = seriesModel.get(['emphasis', 'blurScope']);
+if (focus != null) {
+blurSeries(seriesIndex, focus, blurScope

[echarts] 02/02: fix: tweak the last commit.

2021-03-27 Thread sushuang
This is an automated email from the ASF dual-hosted git repository.

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

commit 9c2cb8eb518085fab5ed5f543d74fed49eb95299
Author: 100pah 
AuthorDate: Thu Mar 25 13:20:22 2021 +0800

fix: tweak the last commit.
---
 src/core/echarts.ts | 8 ++--
 src/util/states.ts  | 4 +---
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/src/core/echarts.ts b/src/core/echarts.ts
index a9d7103..799a564 100644
--- a/src/core/echarts.ts
+++ b/src/core/echarts.ts
@@ -42,7 +42,7 @@ import {
 HOVER_STATE_EMPHASIS,
 HOVER_STATE_BLUR,
 blurSeries,
-toggleSeriesBlurStateFromPayload,
+blurSeriesFromPayload,
 toggleSelectionFromPayload,
 updateSeriesElementSelection,
 getAllSelectedIndices,
@@ -1473,12 +1473,16 @@ class ECharts extends Eventful {
 });
 }
 
+if (isHighDownPayload(payload)) {
+allLeaveBlur(ecIns._api);
+}
+
 // If dispatchAction before setOption, do nothing.
 ecModel && ecModel.eachComponent(condition, function (model) {
 if (!excludeSeriesIdMap || excludeSeriesIdMap.get(model.id) == 
null) {
 if (isHighDownPayload(payload) && !payload.notBlur) {
 if (model instanceof SeriesModel) {
-toggleSeriesBlurStateFromPayload(model, payload, 
ecIns._api);
+blurSeriesFromPayload(model, payload, ecIns._api);
 }
 }
 else if (isSelectChangePayload(payload)) {
diff --git a/src/util/states.ts b/src/util/states.ts
index 31b5367..b3de1c1 100644
--- a/src/util/states.ts
+++ b/src/util/states.ts
@@ -482,7 +482,7 @@ export function blurSeries(
 });
 }
 
-export function toggleSeriesBlurStateFromPayload(
+export function blurSeriesFromPayload(
 seriesModel: SeriesModel,
 payload: Payload,
 api: ExtensionAPI
@@ -507,8 +507,6 @@ export function toggleSeriesBlurStateFromPayload(
 }
 }
 
-allLeaveBlur(api);
-
 if (isHighlight) {
 if (el) {
 const ecData = getECData(el);

-
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 #14544: echarts heatmap 的 svg 样式能设置 rx 和 ry 吗

2021-03-27 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 🙊
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 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.

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] JeffreyBool opened a new issue #14544: echarts heatmap 的 svg 样式能设置 rx 和 ry 吗

2021-03-27 Thread GitBox


JeffreyBool opened a new issue #14544:
URL: https://github.com/apache/echarts/issues/14544


   echarts heatmap 的 svg 样式能设置 rx 和 ry 吗


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

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 #14544: echarts heatmap 的 svg 样式能设置 rx 和 ry 吗

2021-03-27 Thread GitBox


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


   


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

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] JeffreyBool opened a new issue #14545: echarts heatmap 的 svg 样式能设置 rx 和 ry 吗?

2021-03-27 Thread GitBox


JeffreyBool opened a new issue #14545:
URL: https://github.com/apache/echarts/issues/14545


   ### Version
   5.0.2
   
   ### Steps to reproduce
   echarts heatmap 的 svg 样式能设置 rx 和 ry 吗
   
   ### What is expected?
   echarts heatmap 的 svg 样式能设置 rx 和 ry 吗
   
   ### What is actually happening?
   echarts heatmap 的 svg 样式能设置 rx 和 ry 吗
   
   
   


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

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 #14545: echarts heatmap 的 svg 样式能设置 rx 和 ry 吗?

2021-03-27 Thread GitBox


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






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

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] keephungryHF commented on issue #14190: Markline labels are shown below bars.

2021-03-27 Thread GitBox


keephungryHF commented on issue #14190:
URL: https://github.com/apache/echarts/issues/14190#issuecomment-808856384


   May I ask when this feature can be added


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

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