When a long name is supplied to a gantt chart row, the label should be clipped with ellipsis, and the surrounding grid resize accordingly
The label is clipped with ellipsis, but the grid does not resize.

(I've searched hard for a configuration option that may fix this but have had no luck)
https://jsfiddle.net/k41eg257/
Highcharts v7.0.3
Hi @TweededBadger,
Thank you for reporting.
As a workaround you can declare width / height and apply CSS styles.
yAxis: {
labels: {
useHTML: true,
style:{
width: '100px',
height: '18px'
}
}
},
Demo:
FYI @jon-a-nygaard
Most helpful comment
Hi @TweededBadger,
Thank you for reporting.
As a workaround you can declare
width / heightand apply CSS styles.Demo:
FYI @jon-a-nygaard