Is there a way to dynamically increase the height of each row as shown in the image below:
Asked
Active
Viewed 104 times
1
-
What did you try? – user16217248 Mar 10 '23 at 19:33
1 Answers
0
You can set the height of the rows with the yAxis.staticScale
property.
yAxis: {
staticScale: 100
},
Demo: https://jsfiddle.net/BlackLabel/gsc4d5r7/
API: https://api.highcharts.com/gantt/yAxis.staticScale

Michał
- 773
- 1
- 1
- 12
-
Thank you for your quick response, its working, but i need to change the height of each row. Some of the rows have small labels, while others have very large labels. Please help. – Development Support Mar 11 '23 at 11:25
-
There is a ticket on the library's GitHub repository related to this. You can also find a workaround there: https://github.com/highcharts/highcharts/issues/15171 – Michał Mar 13 '23 at 12:06
-
Please help me to find out how to calculate breaks, breaksize, from and to points? https://jsfiddle.net/BlackLabel/my36or2u/ – Development Support Apr 01 '23 at 07:21