color : String

Sets the color of the custom break.


Default: “white”
Example: “green”, “#23EA23”

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 axisX: {
    scaleBreaks: {
	customBreaks: [{
	    color: "#99AFD3",
            . 
            .
        }]
    }

 },
 .
 . 
});
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