labelWrap: Boolean

labelWrap specifies whether to wrap or clip label once its width crosses labelMaxWidth.

Default: true
Example: true, false
var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 axisX:{
    labelMaxWidth: 50,  
    labelWrap: true
 },
 .
});
chart.render();

Try Editing The Code

  Also See:    


If you have any questions, please feel free to ask in our forums.Ask Question