在replot()图表上保留jqplot设置

时间:2013-11-01 10:10:42

标签: javascript charts jqplot

当我使用

时,如何保持max,min和numberTicks的jqplot选项
plot1.replot({resetAxes: true });

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

1 个答案:

答案 0 :(得分: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
        }
    }
});

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