NVD3.js: 如何配置 x 轴或 y 轴值
NVD3.js: how to config x axis or y axis values
我正在使用 NVD3.js 绘制图形,但我对如何在 x 轴或 y 轴值上设置值感到困惑。
我的问题是:
1.how 以使用我自己的值更改 x 或 y 轴上的默认值?
2.how 更改轴上值的数量?enter image description here
使用chart.forceX = [min,max]
和chart.forceY=[min,max]
手动设置静态或动态轴值。您可以使用 chart.xAxis.tickValues(['1','2','3'])
更改轴值的增量,对于 y 轴刻度值也类似。
我正在使用 NVD3.js 绘制图形,但我对如何在 x 轴或 y 轴值上设置值感到困惑。
我的问题是:
1.how 以使用我自己的值更改 x 或 y 轴上的默认值? 2.how 更改轴上值的数量?enter image description here
使用chart.forceX = [min,max]
和chart.forceY=[min,max]
手动设置静态或动态轴值。您可以使用 chart.xAxis.tickValues(['1','2','3'])
更改轴值的增量,对于 y 轴刻度值也类似。