labelTextAlign: String

Sets the text alignment of axisX crosshair’s label. This feature is useful whenever label text is wrapped onto multiple lines.


Default: “left”
Options: “left”, “center”, “right”

var  chart =  new  CanvasJS.Chart("container", {
 .
 .
 axisX:{
	crosshair:  {
		.
		.
		 labelTextAlign: "center" // change to "left" / "right"
		.
		.
		}
	]
   },
 .
 . 
});
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