highcharts / highcharts-ios

iOS wrapper for Highcharts.
Other
127 stars 39 forks source link

How to hide all animation? #420

Closed vaidehi-iottive closed 1 year ago

ihnatmoisieiev commented 1 year ago

Hello @vaidehi-iottive, you can disable animations for a chart and for a series:

let chart = HIChart()
chart.animation = HIAnimationOptionsObject()
chart.animation.duration = 0
options.chart = chart

let plotOptions = HIPlotOptions()
plotOptions.series = HISeries()
plotOptions.series.animation = HIAnimationOptionsObject()
plotOptions.series.animation.duration = 0
options.plotOptions = plotOptions
ihnatmoisieiev commented 1 year ago

Closing due to inactivity