nvd3.js を使用してグラフを実装しています。私のコードは次のようなものです:
nv.addGraph(function () {
charts = nv.models.lineChart();
var chart = charts.margin({
top: 100,
right: 20,
bottom: 50,
left: 45
}).showLegend(true).tooltipContent(function (key, y, e, graph) {
return '<h3>' + key + '</h3>' + '<p>' + e + '% at ' + y + '</p>'
});
chart.xAxis.tickFormat(function (d) {
return d3.time.format('%x')(new Date(d))
});
chart.yAxis
.tickFormat(d3.format(',d'));
chart.forceY([0,20]);
d3.select('#lineChart svg')
.datum(dateArr)
.transition(500).duration(500)
.call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
どこdateArr
ですか[{"key":"182398","values":[{"x":"1375295400000","y":"2"},{"x":"1374517800000","y":"2"},{"x":"1374604200000","y":"12"},{"x":"1374431400000", "y":"1"},{"x":"1375122600000","y":"4"},{"x":"1375209000000","y":"19"}]},{"key":"185271","values":[{"x":"1375295400000","y":"0"},{ "x":"1374517800000","y":"1"},{"x":"1374604200000","y":"2"},{"x":"1374431400000","y":"0"},{"x":"1375122600000","y":"0"},{"x":"1375209000000","y":"0"}]}];
データによると、2 つのデータがあるため、185271
1 つは 2013 年 7 月 23 日の 1 で、もう 1 つは 2013 年 7 月 24 日の 2 です。しかし、添付の画像を見ると、x 軸に表示されている日付に問題があります。2013 年 7 月 24 日でさえ、x 軸には存在しません。最初のデートの繰り返しがあることもわかります。どこに問題があり、何を修正したか教えてください。
前もって感謝します。