labelWrap: Boolean

Setting labelWrap to true wraps the labels at labelMaxWidth. Clips the same when set to false. It overrides the labelWrap set at axis level.


Default: true
Example: true, false.

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 axisY:{
	stripLines: [
		{
		 labelWrap: true  // change to false
		 labelMaxWidth: 50
			
		}
	]
   },
 .
 . 
});
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