borderColor: String

Sets the color of border around Chart Title. Values of borderColor can be “HTML Color Name” or “hex” code .


Default: “black”
Example: “red”, “#FF0000” ..

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