Reputation: 251
I am using highcharts-ng and when i draw column chart with navigator and apply animation on it. only navigator line animate.
{
"options": {
"chart": {
"backgroundColor": "#eaeaf2",
"type": "column",
"zoomType": "xy"
},
"navigator": {
"enabled": true
},
"plotOptions": {
"series": {
"animationLimit": "Infinity",
"animation": {
"duration": 9000
}
}
},
},
"credits": {
"enabled": false
},
"useHighStocks": true,
"series":
}
]
}
Upvotes: 0
Views: 147
Reputation: 12472
It is a known bug in highcharts-ng caused by navigator. Reported here. As a workaround you can define global animation in chart property.
"chart": {
"backgroundColor": "#eaeaf2",
"type": "column",
"zoomType": "xy",
"animation": {
"duration": 9000
}
},
example: http://jsfiddle.net/r88yszk0/488/
Upvotes: 1