他の一連の年間値と比較して年間集計値を表示する棒グラフを作成しています。値は、前年と比較した 1 年間の総水使用量などです。CSV の日付フィールドを単一の年次値にフォーマットする方法がわかりません。20130101 のようなものでなければならないと仮定すると、x 軸のラベルをカスタマイズして 2013 2012 2011 などを表示するにはどうすればよいですか?
CSV
Date,Litres
2012,42047
2013,18604.5
コード
g4 = new Dygraph(document.getElementById("year"),
"192.168.252.30/monitoring/data_water_year.php",
{legend: 'always',
title: 'Yearly Water Usage',
xlabel: 'Date',
ylabel: 'Litres',
includeZero: true,
animatedZooms: true,
drawXGrid: false,
plotter: barChartPlotter}
);