标签: d3.js nvd3.js boxplot axis-labels
我正在使用nvd3 boxplot,并希望删除绘图中显示的最大值和最小值。例如,我 不 希望在y轴上显示值 7 和 68 下图。
有关如何做到这一点的任何建议。 感谢。
答案 0 :(得分:6)
对象属性和删除方法的替代方法是在图表对象本身上调用showMaxMin方法:
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 } }