私はnv.models.lineWithFocusChartを使用しています。ここでは、1 時間ごとの測定値を表示しています。したがって、x ドメインは日付です。
私が必要とするのは、X 軸に 1 時間ごとのティックを表示することです。
00:00 01:00 02:00 ... 24:00
見つけることができるすべてを試しましたが、何も機能しません。値が日付でない場合、特定の目盛りを設定するのは簡単なようです。しかし、デートのためにそれを行う方法がわかりません。
役立つ場合は、グラフを作成するコードを次に示します。
nv.addGraph ->
chart = nv.models.lineWithFocusChart(view)
chart.yAxis.tickFormat(d3.format(".02f"))
d3.select(graphSelector).datum([]).transition().duration(500).call(chart)
nv.utils.windowResize ->
d3.select(graphSelector).call(chart)
chart.xAxis.tickFormat (d) ->
d3.time.format(ticksFormat)(new Date(d))
chart.x2Axis.tickFormat (d) ->
d3.time.format(ticksFormat)(new Date(d))
chart.xAxis.tickSubdivide(9)