当我使用
时,如何保持max,min和numberTicks的jqplot选项plot1.replot({resetAxes: true });
我在x轴的两侧移动了图表。示例:图表x轴以0开头,当我执行replot时,我的x轴以-40开始。
答案 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
}
}
});
您可以在此重新指定时指定旧的最大值和最小值。