titleMaxWidth: Number

Sets the maximum width of title after which it gets wrapped or clipped depending on whether titleWrap is set to true (default) or false.


Default: Automatically calculated based on the length of axis.
Example: 100,200,..

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