The data values which I am using for generating charts are large sometimes.After the chart is rendered the tick labels are overlapping the x axis label(placed in outer -middle position).Because of the

Any news on this? I am having the same issue and want to avoid writing a workaround.
The screenshot shows what happens: the x-axis label "Opening medium" overlaps the tick labels, in this case "Anonymous text 1". A static fix won't help, because tick label lengths vary depending on the chart and filter selections.
Hi,
as you can see at the page Rotate X Axis Tick Text, you should set height parameter.
...
axis: {
x: {
type: 'category',
tick: {
rotate: 75,
multiline: false
},
height: 130
}
}
...
Thanks Felipe - sorted the issue out. Will set the height dynamically depending on the longest tick label text.
@aendrew this question seems answered, can be closed ?
yes
Most helpful comment
Hi,
as you can see at the page Rotate X Axis Tick Text, you should set
heightparameter.