titleWrap: Boolean

titleWrap specifies whether to wrap or clip axis title once its width crosses titleMaxWidth.


Default: true
Options: true, false

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 axisY:{
  title: "axisY Title",
  titleWrap: false
 },
 .
});
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