我已经钻了“柱形图”。&现在我想深入了解“饼图”
我显示饼图的代码如下,
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
},
title: {
text: ''
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage}%</b>',
percentageDecimals: 1
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
color: '#000000',
connectorColor: '#000000',
formatter: function() {
return '<b>'+ this.point.name +'</b>: '+ Math.round(this.percentage) +' %';
}
}
}
},
series:
[{
type:'pie',
data: model.mixchart
}]
});
});
});
我怎样才能在这方面进行深入研究?
下钻之后它应该只显示饼图。那么在上面的代码中我应该怎么做呢?
至少给我一些在饼图中向下钻取的参考链接,以便我可以更喜欢那个。