Skip to content

Commit

Permalink
fix: normal animation spec not update
Browse files Browse the repository at this point in the history
  • Loading branch information
skie1997 committed Feb 5, 2025
1 parent 61a5121 commit 3d4d682
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ export class RankingListChartSpecTransformer extends CommonChartSpecTransformer

this.transformPaddingSpec(spec);

// console.log('spec', spec);

super.transformSpec(spec);
}

Expand Down Expand Up @@ -147,6 +149,7 @@ export class RankingListChartSpecTransformer extends CommonChartSpecTransformer
spec.animationAppear = this.getAnimationAppear(this.originalSpec, 'rect');
spec.animationEnter = this.getAnimationEnter(this.originalSpec);
spec.animationUpdate = this.getAnimationUpdate(this.originalSpec);
spec.animationNormal = this.originalSpec.animationNormal;
}
}

Expand Down Expand Up @@ -544,6 +547,7 @@ export class RankingListChartSpecTransformer extends CommonChartSpecTransformer
// ]
// });
// }

return result;
};

Expand Down

0 comments on commit 3d4d682

Please sign in to comment.