wrap: Boolean

Wrap specifies whether to wrap the title once its width crosses maxWidth or not. If it is set to false, title gets clipped after reaching maxWidth.

Default: true
Example: true, false
var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 title:{
   wrap: false
 },
 .
 .
});
chart.render();

Try Editing The Code

  Also See:    


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