AnimationOptions
data class AnimationOptions(val duration: Int = 1000, var easing: Eeasing = Eeasing.EASEOUTQUART, val delay: Number? = null, val loop: Boolean? = null, val onProgress: (obj: AnimationEvent) -> Unit? = null, val onComplete: (obj: AnimationEvent) -> Unit? = null, val disabled: Boolean? = null)(source)
Chart animation options.
Constructors
Link copied to clipboard
constructor(duration: Int = 1000, easing: Eeasing = Eeasing.EASEOUTQUART, delay: Number? = null, loop: Boolean? = null, onProgress: (obj: AnimationEvent) -> Unit? = null, onComplete: (obj: AnimationEvent) -> Unit? = null, disabled: Boolean? = null)