You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by sh...@apache.org on 2020/10/13 10:53:14 UTC

[incubator-echarts] branch next updated: fix(pie): fix wrong query path

This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/next by this push:
     new 44ffecb  fix(pie): fix wrong query path
44ffecb is described below

commit 44ffecb8e4d7ecf03db2789a2121a51e0369b7db
Author: pissang <bm...@gmail.com>
AuthorDate: Tue Oct 13 18:52:24 2020 +0800

    fix(pie): fix wrong query path
---
 src/chart/pie/PieView.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/chart/pie/PieView.ts b/src/chart/pie/PieView.ts
index e1af265..06a2924 100644
--- a/src/chart/pie/PieView.ts
+++ b/src/chart/pie/PieView.ts
@@ -191,7 +191,7 @@ class PiePiece extends graphic.Sector {
         // Default use item visual color
         setLabelLineStyle(this, getLabelLineStatesModels(itemModel), {
             stroke: visualColor,
-            opacity: retrieve2(labelLineModel.get('opacity'), visualOpacity)
+            opacity: retrieve2(labelLineModel.get(['lineStyle', 'opacity']), visualOpacity)
         });
     }
 }


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