I have two charts with different yAxis titles. I am trying to align the titles horizontally to the right side of the chart (on the left side of the Y line).
However, the alignment only seems to work vertically centered. I actually need the titles to be in the middle.
Adding text-align to the style property did not achieve the desired result.
yAxis: {
"title": {
"style": {
"textAlign": "right"
}
}
}
I would appreciate any suggestions on how to resolve this issue.