我希望在楔子上添加Pending Issued Closed的楔子。 我认为需要在其中一个对象中进行更改。
seriesDefaults:
labels:
visible: true,
template: "${value} ${category}",
series:
type: "pie",
data: dataSet
以下是该系列如何在实际图表中使用标签而不仅仅是图例的示例。有关详细信息,请参阅JSFIDDLE。
谢谢!
pie chart http://www-958.ibm.com/software/data/cognos/manyeyes/images/pie-chart.gif?1292295884
答案 0 :(得分:1)
我不是100%肯定你在问什么,但是,使用系列默认标签内的模板,你可以把任何你需要的东西作为标签。
seriesDefaults: {
labels: {
visible: true,
template: "${category} - ${value} clients"
}
}