indexLabelFontWeight: Number

Sets the Index Label’s Font Weight. It can be set to one of the below options.


Default: “normal”
Example: “lighter”, “normal” ,”bold” , “bolder”

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 data: [{
  indexLabelFontWeight: "bold",

  },
 ]
 .
 .
});
chart.render();


Try it Yourself by Editing the Code below.



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