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: truevar chart = new CanvasJS.Chart("container",
{
.
.
title:{
wrap: false
},
.
.
});
chart.render();