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 it Yourself by Editing the Code below.

  Also See:    



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