I'm trying to achieve centered multiline text within my highcharts donut pie chart. I want the first line to have a font size of 50px and the second line to have a font size of 25px.
Currently, I cannot get different font sizes on each line, nor can I get the text to center.
JSFiddle: https://jsfiddle.net/r7tp9wp6/
Here is how I render the title
var r = this.renderer,
x = this.series[0].center[0] + this.plotLeft,
y = this.series[0].center[1] + this.plotTop;
this.title = r.text('Top<br>Bottom', 0, 0)
.css({
fontSize: '25px',
textAlign: "center",
}).hide()
.add();