endValue : Number

Sets the ending value of custom Scale Break.


Default: null
Example: 50,70,400,500

var  chart =  new  CanvasJS.Chart("chartContainer",
{
 .
 .
axisY: {
	scaleBreaks: {
		customBreaks: [{
			startValue: "200",
			endValue: "4500",
			.
			.
		}]
	}

},
 .
 . 
});
chart.render();


Try it Yourself by Editing the Code below.

  Also See:    



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