$.ajaxSetup({ cache: false });
var options = {
chart: {
renderTo: 'container2',
margin: [0, 200, 5, 10]
},
title: {
text: ''
},
plotArea: {
shadow: null,
borderWidth: null,
backgroundColor: null
},
tooltip: {
formatter: function () {
return '<b>' + this.point.name + '</b>: ' + this.y + '';
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: false,
formatter: function () {
if (this.y > 5) return this.point.name;
},
...
Go to the complete details ...