JSFiddle API Examples Are Broken
From the API documentation in: http://api.highcharts.com/highcharts#chart.alignTicks Clicking in align ticks true example: http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-softwar
Solution 1:
problem is .highchart. Use
var chart = new Highcharts.Chart({
chart: {
//alignTicks: false,
type: 'line',
renderTo: 'container'
},
...
}
problem is HighCharts js file updates. In highcharts offical site demos are not working , too.
Solution 2:
The .highcharts mechanism was introduced in Highcharts 3.0 via a JQuery plugin, as documented in the Highcharts 3.0 release announcement. Presumably the JSFiddle pages in question that weren't working were including an older version of Highcharts at the time, as I was until I figured why my own charts weren't working!
Solution 3:
I updated their jsfiddle chart.
It works now. The problem was with highcharts
which didn't really existed as a method of the jQuery object.
Post a Comment for "JSFiddle API Examples Are Broken"