添加第二个Y轴

时间:2013-01-01 14:27:43

标签: d3.js nvd3.js

是否有直接的方法将第二个Y轴添加到图表模型中?我看到linePlusBar图表具有此功能(通过y1Axis y2AxisforceY)但是有一种简单的方法可以将其添加到其他模型中吗?我想将它用于lineChart或散点模型。

1 个答案:

答案 0 :(得分:0)

相同的X轴,不同的Y值需要双Y轴。你可以试试这个:

plot(x,y1......,axes=F)
axis(2,....) # build the left Y axis
par(new=T) # means that the next chart will be draw on the picture you draw above
plot(x,y2......,axes=F)
axis(4,....) # build the right Y axis