Skip to content

Commit

Permalink
fix: appear animation not work
Browse files Browse the repository at this point in the history
  • Loading branch information
skie1997 committed Feb 5, 2025
1 parent 3d4d682 commit d5ef789
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@ export class RankingListChartSpecTransformer extends CommonChartSpecTransformer
};

spec.animationExit = this.getAnimationExit(this.originalSpec);
spec.animationAppear = this.getAnimationAppear(this.originalSpec, 'rect');
spec.animationEnter = this.getAnimationEnter(this.originalSpec);
spec.animationUpdate = this.getAnimationUpdate(this.originalSpec);
spec.animationNormal = this.originalSpec.animationNormal;
}
spec.animationNormal = this.originalSpec.animationNormal;
spec.animationAppear = this.getAnimationAppear(this.originalSpec, 'rect');
}

transformAxesSpec(spec: any) {
Expand Down

0 comments on commit d5ef789

Please sign in to comment.