Sets the maximum width of label after which the it gets wrapped or clipped depending on whether labelWrap is set to true (default) or false.
Default: Automatically calculated based on the length of label.var chart = new CanvasJS.Chart("container",
{
.
.
axisY:{
crosshair:{
enabled: true,
labelMaxWidth: 20
.
.
}
},
.
.
});
chart.render();