In the Highcharts Pie-Donut demo (http://jsfiddle.net/gh/get/jquery/1.9.1/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/pie-donut/), the value for Y in the data set is larger than the sum of the values in the inner data set. For example:
data = [{
y: 55.11,
color: colors[0],
drilldown: {
name: 'MSIE versions',
categories: ['MSIE 6.0', 'MSIE 7.0', 'MSIE 8.0', 'MSIE 9.0'],
data: [10.85, 7.35, 33.06, 2.81],
color: colors[0]
}
}
The y value is 55.11 and the sum of the inner data set is 54.07. I know that the y value is used for the outer donut and the inner data set is for the pie.
Why is the y value larger than the sum of the inner data set? Is there a formula to calculate what that y value should be?