Flot图以等距对齐数据点

时间:2014-06-18 06:31:38

标签: jquery flot

如果每周数据有折线图,我怎样才能使点在flotgraph中等距对齐

enter image description here

flot graph插件中的任何方法??

1 个答案:

答案 0 :(得分:1)

如果使用的每周值的时间戳恰好相隔一周,那么你的点在x轴上将是等距的。

一般情况下,如果您希望图表中的等距点数据不等距,请使用类别插件(exampleexample code)。

基本代码:

var data = [ ["April", 13], ["May", 17], ["June", 9] ];

$.plot("#div", [ data ], {
    series: {
        lines: {
            show: true
        },
        points: {
            show: true
        }
    },
    xaxis: {
        mode: "categories"
    }
});