In the following CanvasJS example (https://canvasjs.com/docs/charts/chart-options/axisy/interval/), the y-Axis is defined as follows:
axisY:{
interval: 20
},
If instead the y-Axis is defined as follows:
axisY:{
minimum: 5,
maximum: 95,
interval: (95-5)/10
},
Then although the minimum, maximum, and interval properties seem to be applied correctly to the graph, the minimum value (5) and maximum value (95) are not displayed on the Y-axis. I would have expected tick marks at 5, 14, 23, 32, 41, 50, 59, 68, 77, 86, and 95. Instead I am seeing tick marks at 9, 18, 27, 36, 45, 54, 63, 72, 81, and 90. Is this a bug, or can this behaviour be adjusted through other CanvasJS properties? I even tried to use “includeZero: false”, without any difference.