关于jqPlot zoom

时间:2012-06-07 02:46:36

标签: charts zoom jqplot

我正在尝试使用jqPlot在我的项目中创建图表。我遇到的问题是当我缩放到某个区域时,x轴标签显示为“6月1日,6月1日,6月1日,6月02日 ,6月02日,6月2日,6月03日“等我想要的是”6月1日,6月2日,6月03日“。我怎么能这样做?对不起英语不好。

1 个答案:

答案 0 :(得分:1)

您可以提供如下的滴答间隔值:

var plot = $.jqplot('graph', [dataSet], {
    // ...
    axes: {
        xaxis: {
            min: 'X', // E.g. '2012-06-01'
            max: 'X',
            tickInterval: '1 day' // Yes, it understands this.
            // ...
        }
    },
    // ...
});

但请记住:要使tickInterval工作,您必须至少提供一个最小值或最大值。