我想在我的图表中显示最后xx天,但我该怎么做?我已经制作了一个jsFiddle,所以你们可以看到我现在拥有的东西。
这是我的JS代码:
$("table.chart-dates").each(function() {
var colors = [];
$("table.chart-dates thead th:not(:first)").each(function() {
colors.push($(this).css("color"));
});
$(this).graphTable({
series: 'columns',
position: 'replace',
width: '100%',
height: '200px',
colors: colors
}, {
xaxis: {
mode: "time",
timeformat: "%d/%m"
},
yaxis: {
max: null,
autoscaleMargin: 0.02
}
});
});
我希望有人可以帮助我。