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 2021/02/26 05:43:33 UTC

[echarts] branch fix-legacy-code created (now c3a4982)

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

shenyi pushed a change to branch fix-legacy-code
in repository https://gitbox.apache.org/repos/asf/echarts.git.


      at c3a4982  fix: remove legacy usage of transform

This branch includes the following new commits:

     new c3a4982  fix: remove legacy usage of transform

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


[echarts] 01/01: fix: remove legacy usage of transform

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

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

commit c3a4982531459058acaf778e801df31b867598f5
Author: pissang <bm...@gmail.com>
AuthorDate: Fri Feb 26 13:42:31 2021 +0800

    fix: remove legacy usage of transform
---
 src/chart/helper/EffectSymbol.ts | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/chart/helper/EffectSymbol.ts b/src/chart/helper/EffectSymbol.ts
index 0c71ed6..4681db0 100644
--- a/src/chart/helper/EffectSymbol.ts
+++ b/src/chart/helper/EffectSymbol.ts
@@ -110,7 +110,8 @@ class EffectSymbol extends Group {
             // TODO Configurable effectCfg.period
             ripplePath.animate('', true)
                 .when(effectCfg.period, {
-                    scale: [effectCfg.rippleScale / 2, effectCfg.rippleScale / 2]
+                    scaleX: effectCfg.rippleScale / 2,
+                    scaleY: effectCfg.rippleScale / 2
                 })
                 .delay(delay)
                 .start();


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