是否可以在NVD3(1.8.3+)MultiChart中为第二个y轴指定标签?以下正确设置了图表左侧的标签,但不是右侧:
chart.yAxis1.axisLabel('Liters');
chart.yAxis2.axisLabel('Gallons');
答案 0 :(得分:0)
我遇到了同样的问题,原来是右侧被切断了。我在定义多图模型时通过包含边距来解决它。
`var chart = nv.models.multiChart()
.margin({top: 30, right: 90, bottom: 50, left: 70})
.color(d3.scale.category10().range());
为我解决了这个问题,可能值得一试。 github上的多图示例在其代码中也有.margin设置。