endValue : Number

Sets the ending value of custom Scale Break.

Default: null
Example: 50,70,400,500
var  chart =  new  CanvasJS.Chart("chartContainer",
{
 .
 .
 axisX: {
    scaleBreaks: {
	customBreaks: [{
            startValue: "200",
            endValue: "4500",
            .
            .
        }]
    }
 },
 .
 . 
});
chart.render();

Try Editing The Code

  Also See:    


If you have any questions, please feel free to ask in our forums.Ask Question