Skip to content

Commit

Permalink
Merge pull request #3130 from VisActor/fix/segment-line-update
Browse files Browse the repository at this point in the history
fix: add segments attribute to line/area  update animation
  • Loading branch information
xile611 authored Sep 2, 2024
2 parents cc876b2 + e06faf5 commit 41cf1df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vchart/src/animation/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ const lineOrAreaAnimation = (params: ILineAnimationParams, preset: LineAppearPre
update: [
{
type: 'update',
options: { excludeChannels: ['points', 'defined'] }
options: { excludeChannels: ['points', 'defined', 'segments'] }
},
{
channel: ['points'],
channel: ['points', 'segments'],
custom: TagPointsUpdate,
duration: DEFAULT_ANIMATION_CONFIG.update.duration,
easing: DEFAULT_ANIMATION_CONFIG.update.easing,
Expand Down

0 comments on commit 41cf1df

Please sign in to comment.