使用本示例中所示的堆积面积图 http://nvd3.com/ghpages/stackedArea.html
尝试将 y 轴刻度标签和工具提示标签格式化为整数而不是浮点数。尝试更改以下代码
chart.yAxis
.axisLabel('Users')
.tickFormat(d3.format(',.2f'));
到
chart.yAxis
.axisLabel('Users')
.tickFormat(d3.format(',.0d'));
精度保持不变(仍然显示百分之一的值)。我关注 Github Wiki 无济于事https://github.com/mbostock/d3/wiki/Formatting#wiki-d3_format
任何建议或提示将不胜感激。