Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NVD3 を使用して Line Plus Bar Chart を表示していますが、日付を文字列として X 軸に渡すのに問題があります。
これを行う方法はありますか?
次のようにオブジェクトに文字列を渡します。
"06-2013"
グラフに月年のみを表示したいのですが、フォーマットする必要がない場合は感謝します。
d3.formatまたはのようなものを使用する義務はありませんd3.time.format。tickFormat関数のハンドラーで、好きな値または型を返すことができます。
d3.format
d3.time.format
tickFormat
ラベルとして使用したい文字列がデータのどこかにある場合は、フォーマットせずにそのまま返します。
chart.xAxis.tickFormat(function(d) { return data[0].values[d][0]; // example, depends on data structure });