我使用dc.js顯示餅圖,並嘗試從數字中刪除小數點但我無法做到。在餅圖中刪除小數點dc.js
代碼:
addPieChartWidget(innerContainer, dimFunction, reduceFunction , colors){
var chart = dc.pieChart(innerContainer);
var dim = this.crossFilterModel.dimension(dimFunction);
var groupingStrategy = dim.group().reduceSum(reduceFunction);
chart
.width(innerContainer.offsetWidth)
.height(innerContainer.offsetHeight)
//.slicesCap(4)
.innerRadius(0)
.dimension(dim)
.group(groupingStrategy)
.renderLabel(true)
.legend(dc.legend().x(18).y(18).itemHeight(16).gap(1))
//.legend(dc.legend())
// workaround for #703: not enough data is accessible through .label() to display percentages
.on('pretransition', function(chart) {
chart.selectAll('text.pie-slice').text(function(d) {
return d.data.key + ' ' + dc.utils.printSingleValue((d.endAngle - d.startAngle)/(2*Math.PI) * 100) + '%';
})
});
chart.on("filtered", dojo.hitch(this, this.fiterChangeHandler));
}
任何人都可以幫我嗎?
感謝
你能發佈你的JavaScript嗎? @Juanjo –
這絕對不是感謝的地方。但是你的問題拯救了我的星期工作。我創建了假維(使用數據集中三個不同列的餅圖)。我最後的要求是顯示百分比,它有幫助。 – Himanshu