label : String

Sets the label for crosshair. These are shown on top of Axis Labels.


Default: “” (empty string)
Example: “Label”, “1920”

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
axisY :{
	crosshair: {
		enabled: true,
		label: "Custom Label",
		.
	}

}, .
 . 
});
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