Sets the color of Tick Marks drawn on the axis. The value of tickColor can be a “HTML Color Name” or “hex” code .
Default: “#BBBBBB”var chart = new CanvasJS.Chart("container",
{
.
.
axisY:{
tickColor: "red",
},
.
.
});
chart.render();
Also See:
2 Comments
How to put a tickcolor for only specific tick..
siddhartha,
Sorry, api wise changing color of a specific tick is not possible. But here is a workaround to achieve the same using stripLines.