我很难让标题显示为圆环图。这是我的 plunkr:http ://plnkr.co/edit/nJBpvU3YFAGaoc5BTXi7?p=preview 。以下是我提出的选项:
$scope.options = {
chart: {
type: 'pieChart',
height: 450,
donut: true,
x: function(d){return d.key;},
y: function(d){return d.y;},
showLabels: true,
pie: {
startAngle: function(d) { return d.startAngle/2 -Math.PI/2 },
endAngle: function(d) { return d.endAngle/2 -Math.PI/2 }
},
transitionDuration: 500,
legend: {
margin: {
top: 5,
right: 70,
bottom: 5,
left: 0
}
},
title: "Hello"
},
title: {
text: "Hello"
}
};
我尝试在两个不同的地方添加标题“Hello”,但它没有出现。谁能看到我做错了什么?