I'm using Nvd3 in an Angular project to draw some charts. I'm using the angular directive from Krispo's (http://krispo.github.io/angular-nvd3/#/).
I am showing a pie chart whose labels show the values in percents, but the values shown are being rounded and displayed without decimals. See an example in the plunker below: http://plnkr.co/edit/jSf1TAkj5rO1S7p5PuJK?p=preview
In the example above, the percentages should be 21,9% and 78% for example.
I can only change the slice value format and not the label, that, in this case, is the percentage.
This is a big issue when I have a slice that is right near 100%, because it should show something like 99,99% instead of showing 100% giving the impression that there is only one slice.
Here is the chart configuration:
chart: {
type: 'pieChart',
height: 500,
x: function(d){return d.key;},
y: function(d){return d.y;},
showLabels: true,
transitionDuration: 500,
labelThreshold: 0.01,
legend: {
margin: {
top: 5,
right: 35,
bottom: 5,
left: 0
}
},
labelType: 'percent',
valueFormat: function(d) {
return d3.format(',.5f')(d);
}
}
I was researching and the same . Looking into the nv.d3.js code, found that labelType accepts a function,
labelType: function(d){
var percent = (d.endAngle - d.startAngle) / (2 * Math.PI);
return d3.format('.2%')(percent);
}
Passing this as part of the pie chart configuration, gives labels with two decimal points.
It seems the nvd3 library doesn't let you change that: https://github.com/novus/nvd3/blob/master/nv.d3.js#L10490
"percent": d3.format('%')(percent)
if you really need this, maybe add another labelType to the nvd3.js code with what you want
var labelTypes = {
"key" : getX(d.data),
"value": getY(d.data),
"percent": d3.format('%')(percent),
"percent2digits": d3.format('.2%')(percent)
};
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With