startValue : Number

Sets the starting value of custom scale break.


Default: null
Example: 20,30,100,500

var  chart =  new  CanvasJS.Chart("chartContainer",
{
 .
 .
 axisX: {
    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