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

[incubator-echarts] branch fix/parallel-select created (now 1a58372)

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

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


      at 1a58372  fix: fix parallel select opacity should be applied.

This branch includes the following new commits:

     new 1a58372  fix: fix parallel select opacity should be applied.

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-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[incubator-echarts] 01/01: fix: fix parallel select opacity should be applied.

Posted by su...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 1a58372804b4829f2493969320fa6fa183387431
Author: 100pah <su...@gmail.com>
AuthorDate: Sun Nov 8 22:13:18 2020 +0800

    fix: fix parallel select opacity should be applied.
---
 src/chart/parallel.ts | 2 +-
 src/echarts.ts        | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/chart/parallel.ts b/src/chart/parallel.ts
index 672c0d5..83c1996 100644
--- a/src/chart/parallel.ts
+++ b/src/chart/parallel.ts
@@ -23,4 +23,4 @@ import './parallel/ParallelSeries';
 import './parallel/ParallelView';
 import parallelVisual from './parallel/parallelVisual';
 
-echarts.registerVisual(parallelVisual);
+echarts.registerVisual(echarts.PRIORITY.VISUAL.BRUSH, parallelVisual);
diff --git a/src/echarts.ts b/src/echarts.ts
index d00770e..d140743 100644
--- a/src/echarts.ts
+++ b/src/echarts.ts
@@ -147,8 +147,6 @@ const PRIORITY_VISUAL_CHART_DATA_CUSTOM = 4500;
 // Greater than `PRIORITY_VISUAL_CHART_DATA_CUSTOM` to enable to layout based on
 // visual result like `symbolSize`.
 const PRIORITY_VISUAL_POST_CHART_LAYOUT = 4600;
-// FIXME
-// necessary?
 const PRIORITY_VISUAL_BRUSH = 5000;
 const PRIORITY_VISUAL_ARIA = 6000;
 const PRIORITY_VISUAL_DECAL = 7000;


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