backgroundColor: String

Sets the background color of toolTip. Values can be “HTML Color Name” or “hex” code.


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

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 toolTip:{
  backgroundColor: "#f4d5a6",
 },
 .
 .
});
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