Skip to content

Commit

Permalink
Merge pull request #18960 from apache/fix/line-animation
Browse files Browse the repository at this point in the history
fix(line): fix line may cross in time axis when animation is enabled
  • Loading branch information
Ovilia authored Nov 30, 2023
2 parents c5e0910 + 7d02d5c commit 80525ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chart/line/LineView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ class LineView extends ChartView {

const lineGroup = this._lineGroup;

const hasAnimation = !ecModel.ssr && seriesModel.isAnimationEnabled();
const hasAnimation = !ecModel.ssr && seriesModel.get('animation');

const isAreaChart = !areaStyleModel.isEmpty();

Expand Down

0 comments on commit 80525ed

Please sign in to comment.