我正在开发一个条形图来显示与一系列其他年度值相比的年度汇总值。这些值是与上一年相比一年的总用水量,依此类推。我不知道如何将我的 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}
);