gridColor: String

Sets the Color of Grid Lines. Value of gridColor can be a “HTML Color Name” or “hex” code .


Default: “#666666”
Example: “red”, “#FEFDDF” ..

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 axisY:{
   gridColor: "orange",
 },
 .
 .
});
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