我正在使用 NVD3 和 D3 创建一些简单的视觉效果,其中之一是水平条形图。选项包括:
{
"type": "multiBarHorizontalChart",
"height": 600,
"showControls": false,
"showValues": true,
"duration": 500,
"xAxis": {
showMaxMin: false,
axisLabelDistance: 400,
axisLabelWidth: 500,
},
"yAxis": {
"axisLabel": "",
"tickFormat": function (d) { return d; }
},
"yDomain" : [0, 10000],
x : (function(d) { return d.label }),
y : (function(d) { return d.value }),
showLegend: false,
valueFormat: d3.format(".0f"),
}
输出如下:
然而,项目风格的警察不喜欢图表的范围看起来是无限的,他们希望它看起来像这样:
这可能吗?
谢谢