我正在尝试在DC.js饼图上添加一些标签,例如: http://dc-js.github.io/dc.js/examples/pie-external-labels.html 但是,当我做了与源代码相同的事情时,我从控制台得到了错误消息:drawPaths不是一个函数。实际上,externalLabels和externalRadiusPadding在我的代码中也不起作用。有谁知道我的代码会发生什么?提前谢谢。
var chart = dc.pieChart("#chart-ring-month");
chart
.width(384)
.height(240)
.innerRadius(50)
//.externalLabels(10)
//.externalRadiusPadding(50)
//.drawPaths(true)
.dimension(monthDim)
.group(month_total)
.label(function (d) {
return dc.utils.printSingleValue((d.endAngle - d.startAngle) / (2 * Math.PI) * 100) + '%';
})
.legend(dc.legend());