donut-chart
Highcharts donut chart without inner pie?
You just need to provide the data as an array of two element (key / value) arrays. Specify an innerSize to get the donut style. So your parameters will contain something like this: … data: [[“Firefox”,6],[“MSIE”,4],[“Chrome”,7]], innerSize: ‘20%’, … Here’s a jsFiddle of a complete example.