When autoCalculate is set to true, chart automatically calculates and applies scaleBreaks wherever required. You can control threshold for creating a Scale Break by setting collapsibleThreshold.
Default: falsevar chart = new CanvasJS.Chart("chartContainer",
{
.
.
axisY: {
.
.
scaleBreaks: {
auoCalculate: true // change to false
},
.
.
},
.
.
});
chart.render();