The JSFiddle at http://jsfiddle.net/tsjLdr1h/10/ provides an example of how to configure the Interval and Interval type while creating a new chart.
Is it possible to do the same programmatically through the chart api?
E.g. in the JSFiddle above, comment out the interval and interval settings lines (line 7 and 8), then add the following lines at the end, after the chart.render() line (after line 33):
chart.axisX[0].intervalType = “hour”;
chart.axisX[0].interval = 2;
chart.render();
You will observe that those code lines have no impact on the interval settings.
Can the interval and interval type be set programmatically?