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

  Also See:    



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