nvd3-angular-directives 円グラフは、パーセンテージを表示するときに値を丸めています。小数点以下を正確に表示する方法はありますか? 値は 99.71% と 0.29% で、100% と 0% に丸められます。
...
<nvd3-pie-chart
data="scenarioPie"
id="scenarioPie"
width="450"
height="450"
x="xFunction()"
y="yFunction()"
donut="true"
tooltips="true"
showLabels="true"
donutLabelsOutside="true"
labelType="percent"
showLegend="true"
donutRatio=".4">
<svg></svg>
...
以下のような関数を使用してフォーマットを返してみましたが、機能しません
...
labelType="myFunction()"
...
$scope.myFunction=function() {
return function(d){
return d3.format(',.2%');
}
}