I want to slow down the default animation for a chart. I have a before render snippet which seems like it should work, but doesn’t. The labels part of the snippet works, but I’ve tried two different methods to affect the animation (which are documented in the Highcharts API docs) and they don’t work at all.
I’ve tried it on a column and line chart with no luck, failing on initial page load and on selection of a different chart type from the picklist. The chart simply animates with the usual 250ms animation.
Has anyone else done this successfully?
Here’s my snippet:
var chartObj = arguments[0], $ = skuid.$; $.extend(true, chartObj.xAxis[0],{ labels: { step: 2, rotation: 300 }, plotOptions: { series: { animation: { duration: 3000 } } }, chart: { animation: { duration: 3000 } } });<br>