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",
{
.
.
axisX: {
scaleBreaks: {
autoCalculate: true // change to false
},
.
.
},
.
.
});
chart.render();