-
Notifications
You must be signed in to change notification settings - Fork 14
Animation
Thomas Möller edited this page Apr 12, 2024
·
11 revisions
Animation
This class contains methods and properties related to the animation.
- none
The following sections contain a detailed description of the methods and properties.
With this property you can set the duration of the animation.
The value is given in milliseconds. So, for a duration of one second you enter the value 1000.
--
myChart.Animation.Duration = 1000
--
With this property you can set the easing of the animation.
Easing functions specify the rate of change of a parameter over time.
This website shows how the concept works: https://easings.net/
{empty}, which leads to 'easeOutQuart'
myChart.Animation.Easing = chAnimation.easeOutQuart
--