indexLabelMaxWidth defines the maximum width of labels after which they get clipped or wrapped depending on indexLabelWrap’s value.
Default: Automatically calculated based on Chart Size.
Options: 4, 20, 100 etc.
- Supported in all Chart Types
var chart = new CanvasJS.Chart("container",
{
.
.
data:[{
type: "pie",
dataPoints: [
{ y: 10, label: "label1", indexLabelMaxWidth: 50 },
},
]
.
.
});
chart.render();