score:8
The loading animation can be controlled using the 'loading' option. It defines a CSS object that you can theme. You can animated the loading display by using an animated image as the background. http://highcharts.com/ref/#loading
To change the text that it displays via the lang property of options. See http://highcharts.com/ref/#lang for more. I usually just set it to blank.
var options = {
style: { background: 'url(/images/3044/chart_curve.png) no-repeat center' },
lang: { loading: '' }
};
var chart = new Highcharts.Chart(options);
Plus to display the CSS object, you need to call chart.showLoading();
score:1
I don't see any animation effect from the answer referencing the fiddle:
Example seen here http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/chart/animation-easing/
Even trying elevated value as here: http://jsfiddle.net/p9EuZ/
chart: {
animation: {
duration: 6222500,
easing: 'easeOutBounce'
}
}
score:3
It was moved under "series" object istead of chart
http://api.highcharts.com/highstock#plotOptions.series
Something like this:
series: [{
animation:{
duration: 10000
},
type: 'pie',
name: 'Percentuale per periodo',
data: [
['2 anni', 13.0],
['3 anni', 41],
['4 anni', 17],
['5 anni', 17],
['7 anni', 4],
['8 anni', 8]
]
}]
score:12
Sure, to your chart options add the animation duration and easing options. For example, to bounce:
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
animation: {
duration: 1500,
easing: 'easeOutBounce'
}
},
...
});
Example seen here http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/chart/animation-easing/
Source: stackoverflow.com
Related Query
- Highcharts - animations other than the default
- Unable to do any other action than "alert" when triggering the click event on Highcharts (React Native)
- customize Highcharts tooltip on marker points and show default tooltip on the other points
- highcharts link series such that turn one off turns off the other
- highcharts donut pie - different color for the data than its drilldown
- highcharts pie monochrome: how to set the default color?
- how to display 2 same highcharts without duplicate the code
- How to show values in Highcharts tooltip other than x and y when data points are too high?
- Highcharts graph default series fillColor overrides the state fillColors (jsfiddle included)
- Strange character in the Highstock source code
- What's the code in Highcharts such that the bars (columns) in the same group use the same color?
- Highcharts - Disable the legend of secondary y axis by default
- I want to update my series dynamically on highcharts with a click & also bring it to the original way by clicking on an other button (#previous)
- How can I set the crosshair in highcharts to a default position?
- Highcharts - Possible to change the text zoom to other wording?
- Why is this Highcharts xAxis actual max greater than the xAxis.max I have set?
- How to remove the decimal .00 from the default highcharts configuration?
- How to remove default Hover text and display the custom text title on hover Donut chart Highcharts
- In a Highcharts Stacked Area chart, is there a way of highlighting the area hovered over, rather than the area belonging to the nearest point?
- Why code of Horizonal line(y-axis) on a single in Highcharts get applied to all other charts integrated with Webdatarocks
- In highcharts horizontal bar chart, I can't display the default ticks
- Can I have a chart automatically size the height (rather than using 400px) using the Highcharts .NET Wrapper?
- Is there a way to plot more than 1000 points in a scatter plot using the Highcharts .NET Wrapper?
- Highcharts line color based on other data than value
- How to use the default colors when specifying patterns in a zone in Highcharts
- Highcharts areaspline, not getting the default color for chart
- How can I align the scale on my HighCharts graph with the axis rather than the margins?
- How to hide stackLabel in highcharts when it is bigger than the column
- How to modify the code so that Highcharts graph does not cover fixed navigation bar at the top of the page?
- Custom HighCharts - change the height of plotLines , show the marker value by default at a specific x and y
More Query from same tag
- How to change gauge meter color based on value in highcharts
- Is highchart able to vary choice of colours based on number of data points?
- Highcharts no longer animates and readjusts/rescales chart upon addition and removal of series in legend after upgrading to jQuery 1.10
- Angular highcharts problem showing week number
- Time display at x axis instead of date display in highstock
- Getting Data from Database for HighCHarts
- jQuery HighCharts: DateTime X Axis Data label issues
- How to set xAxis maxRange/minRange for each rangeSelector button separately
- Highcharts - Double click event
- How to add image in Highcharts.If no data available
- HighCharts change zoom selectionMarkerFill color dynamically
- Change chart type and redraw with multiple series in Highcharts
- How can we customise the series data object property names "name" & "y" as part of highcharts-angular?
- How to send other variables in x-axis of ReactHighCharts?
- Highchart JS (HTML table, Line chart) line not showing if data has null value
- Why chart is not rendered correctly after export?
- Highcharts highlight a column dynamically
- Highcharts multiple series from JSON with different style depending on serie name
- Highcharts - Column chart with empty columns for date in x-axis
- Highcharts - Alignment issue on 3rd Y axis
- Highstock : Shared tooltip except for one series
- uploading external csv file to highcharts not working
- using Highcharters in R with Shiny, control highstock chart height failed
- How to parse and create JSON tuples with php
- High Chart to High Stock
- Leaflet use popup not display
- How to add % symbol to Y axis values in HighChart graph?
- No image displayed with highcharts
- Highcharts / Highmaps with Angular - Cannot run demo
- Include Third party Charting plugins with ExtJs 5