labelFontFamily : String

Sets the font-family of crosshair’s label.


Default: “Calibri, Optima, Candara, Verdana, Geneva, sans-serif”
Example: “Arial, Trebuchet MS, Tahoma, sans-serif”

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 axisY:{   
    crosshair:{
	enabled: true,
	labelFontFamily: "Arial",
	.
	.
    },
 },
 .
 . 
});
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