lineColor: String

Sets the color of the custom break lines. Custom Break line color can be a “HTML Color Name” or “hex” code.


Default: “red”
Example: “blue”,”#21AB13″..

var  chart =  new  CanvasJS.Chart("chartContainer",
{
 .
 .
 axisY: {
	scaleBreaks: {
		customBreaks: [{
			lineColor: "blue",
			.
			.
		}]
	}
 },
 .
 . 
});
chart.render();


Try it Yourself by Editing the Code below.



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