jQuery flot最后几天的日期

时间:2012-04-03 12:16:49

标签: jquery date charts flot

我想在我的图表中显示最后xx天,但我该怎么做?我已经制作了一个jsFiddle,所以你们可以看到我现在拥有的东西。

See the Fiddle

这是我的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
        }
    });
});​

我希望有人可以帮助我。

1 个答案:

答案 0 :(得分:1)

你看过here了吗?看起来你可以发送一个dataStart参数。我为你的小提琴here创建了一个分叉,数字'3'被硬编码为起始索引。你必须从程序中的逻辑推导出这个,但是应该得到你想要的东西(如果我理解你的问题)。