0

使用时如何保留 max、min 和 numberTicks 的 jqplot 选项

plot1.replot({resetAxes: true });

我在 x 轴的两侧得到了移动图表。示例:图表 x 轴以 0 开头,当我执行 replot 时,我的 x 轴以 -40 开头。

4

1 回答 1

0

这是解决您的问题的方法:

plot1.replot({
    resetAxes:true,
    axes: {
        xaxis: {
            show: true,
            label: "Date/Time",
            showLabel: false,
            showTicks: true,
            renderer:$.jqplot.CategoryAxisRenderer
        },
        yaxis: {
            label: 'y1',
            showLabel: false,
            tickInterval: y1AxisInterval,
            min: minYaxis,
            max: maxYaxis
        }
    }
});

重新绘制时,您可以在此处指定旧的最大值和最小值。

于 2013-11-01T13:57:06.437 回答