score:44
Accepted answer
Yes, you have to use Highcharts.setOptions
.
This way you can set default options for all your charts.
Highcharts.setOptions({
plotOptions: {
series: {
animation: false
}
}
});
score:1
if still not disabling the animation, after setting
plotOptions: {
series: {
animation: false
}
}
in highcharts.js
find
plotOptions : {
line : {
allowPointSelect : !1,
showCheckbox : !1,
animation : {
duration : 0
},
Here I have set the animation duration 0, it works :)
score:1
You can disable the animations globally in highcharts by doing:
chart: {
animation: false
},
Reference: http://api.highcharts.com/highcharts/chart.animation
Source: stackoverflow.com
Related Query
- Turning off animation in HighCharts globally
- Highcharts switching off animation for column chart
- Highcharts - Turning on and off gridlines on show, hide, or legendItemClick
- Highcharts Pie Chart turning off data label
- Is there no way to turn off animation in Highcharts for multiple real-time curves?
- HighCharts - How can I turn off the points?
- HighCharts turn animation false for line chart
- Highcharts How to Show Loading Animation At Set Data
- Highcharts loading animation after setdata
- Highcharts data off by one day
- Highcharts series update with animation
- Highcharts labels cut off
- highcharts link series such that turn one off turns off the other
- Highcharts data label getting cut off
- Highcharts - time off by 1 hour
- Highcharts - column chart redraw animation
- Highcharts date off by one day
- Highcharts - Data label cut off
- highcharts treemap heatmap level2 color turning black
- highcharts piechart redraw with animation after setData()
- Using PhantomJS to create HighCharts grahps server side for use in PDF creation (PHP) - results in exit code 11 from PHPs exec();
- Highcharts event on animation complete?
- Highcharts - Global configuration with common code and unique data & Headings
- HighCharts Stock Chart error code 18
- Highcharts pie tooltip cuts off
- Animation behave differently between initial load and dynamic data series replacement in Highcharts
- highcharts change rendered image source on click
- force Highcharts redraw animation when changing graph type
- How to cut off the line in highcharts between two pointI
- How do i add mouse wheel code in Angular2 highcharts in typescript
More Query from same tag
- Clickable Bars in js Highcharts?
- Assigning JSON value to a Variable that Resides Outside JavaScript Function
- Spline chart series not getting printed on export as image
- How to format the xAxis of Highcharts
- Highcharts heatmap - disabling the legend results in different colors
- Highcharts: Dynamically add series value to category name
- How to fill data dynamically in Highchart
- How to call a function after Highchart animation complete In Anguler?
- why I am getting undefined value in angular js
- Crispy GridLineDashStyle
- centering text in highchart pie on responsive
- Add start-date and end-date as a Xaxis label in highchart
- Setup of Highcharts and PhantomJS on Windows 7. JSON string parse error
- Override default highlighting on hover in networkgraph
- HighCharts - destroy before writing a new chart (to prevent memory leak)
- Highcharts markers positioning errors in IE8
- How to hyperlink bar graph in highcharts
- Highcharts bar chart with negative and positive data
- Set data grouping
- Highcharts hover delay and not rendering with multiple series
- Rendering HighCharts to class instead of id?
- Highchart - spider web chart - chart appears and part of the chart disappears
- Fixed y-axis label width in Highcharts
- Adding tool-tip to an image rendered using Highcharts Renderer.image() api
- Highcharts column only show one category
- special characters in title of charts of Charts Js
- How do I extract array values from hashes?
- Efficiently detect missing dates in array and inject a null (highcharts and jquery)
- PHP Return JSON with ? as callback
- How to update async await function when a variable change?