The code for the simple radial chart I have so far: https://jsfiddle.net/du4jxzwn/20/
series: {
dataLabels: {
enabled: true,
align: 'right',
color: '#FFFFFF',
x: -10,
rotation: '270',
},
pointPadding: 0.025,
groupPadding: 0
}
I want the text to align to the end of the bar. I also want to add some text in the center of the chart, as shown here. Is there any way to do this using Javascript?
Inside the series if you save the point as an object you can edit the dataLabels parameter there and align it.
You can also edit points via events like here and execute the update method on them to change something e.g. the value.
Demo: https://jsfiddle.net/BlackLabel/kjfn5pvc/1/