I'm using highchart solid gauge, and can't figure out how can I add a text inside the chart itself. I added dataLabels but it does not being rendered on the chart.
Here is my Sample Fiddle
series: [{
borderColor: "#00B0FF",
data: [{
color: "#00B0FF",
radius: '75%',
innerRadius: '75%',
y: 85
}],
dataLabels: {
format: '<span style="font-size:2em; color: {point.color}; font-weight: bold">{point.y}%</span>'
}
}]