labelFontStyle: String

Sets the Font Style of Axis Labels. It can be set to one of the below options.


Default: “normal”
Options: “italic”, “oblique”, “normal”

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