tickColor: String

Sets the color of Tick Marks drawn for the axisY stripline. The value of tickColor can be a “HTML Color Name”, “hex code” or “rgb values”.

Default: “#FF7300”
Example: “green”, “#23EA23”, …
var  chart =  new  CanvasJS.Chart("container", {
 .
 .
 axisY:{
	stripLines: [
		{
		 tickColor: "red"
		}
	]
   },
 .
 . 
});
chart.render();

Try Editing The Code


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