在nvd3 boxplot上禁用y轴max和min值

时间:2015-12-28 21:25:04

标签: d3.js nvd3.js boxplot axis-labels

我正在使用nvd3 boxplot,并希望删除绘图中显示的最大值和最小值。例如,我 希望在y轴上显示值 7 68 下图。

enter image description here

有关如何做到这一点的任何建议。 感谢。

3 个答案:

答案 0 :(得分:6)

对象属性和删除方法的替代方法是在图表对象本身上调用showMaxMin方法:

chart.yAxis.showMaxMin(false);

答案 1 :(得分:3)

渲染图表后:

d3.selectAll(".nv-axisMaxMin-y").remove(); //it will remove the max min

工作代码here

希望这有帮助!

答案 2 :(得分:1)

设置图表:{           yAxis:{                    showMaxMin:false                   }          }