jquery flot轴标记

时间:2012-01-12 16:17:37

标签: jquery axis flot

请参阅http://jsfiddle.net/UEePE/1025/

对于x轴,当我不想跳过标签上的任何月份时,我该怎么办?

由于

1 个答案:

答案 0 :(得分:3)

指定ticks参数 - http://jsfiddle.net/UEePE/1029/

var data = [[-373597200000, 315.71], [-370918800000, 317.45], [-368326800000, 317.50],  [-99968400000, 319.79]];

$.plot($("#placeholder"), data, {
        yaxis: {
        },
        xaxis: { mode: "time",
                 ticks: 18,
                 minTickSize: [1, "month"],
                 tickLength: 1,
                 min: (new Date("2000/01/01")).getTime(),
                 max: (new Date("2001/07/02")).getTime()
},
        "lines": {"show": "true"},
        "points": {"show": "true"},
        clickable:true,hoverable: true
});