We are using CanvasJS for an XYY line chart. We are allowing the software users choose to have the chart display with CanvasJS automatic calculated values, or to set their own Minimum, Maximum and Interval values for each of the Y Axes. Any combination of those 6 options are possible at any time. With User supplied Minimum and Maximum values all seems to be OK, the chart is rendering as expected. When we set Interval a Y or Y2 axis interval value, as shown below:
myChart.options.axisY.interval = n; // a verified integer AND / OR
myChart.options.axisY2.interval = n;
The chart simply fails to render at all and we are left with a blank canvas.
These settings are made before any call to myChart.render();