I\'ve been searching for the solution to generate the simplest donut chart with Highcharts library. However, all examples of Highcharts show the style of chart with both inn
You just need to provide the data as an array of two element (key / value) arrays. Specify an innerSize to get the donut style.
innerSize
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.