Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种方法来限制图表的最小绘图点和最大绘图点之前的浮动图表的平移。即,如果在最后一个可见点之后没有点,则不要继续平移。
有没有人知道一个选项,而我不必破解 navigate.js 文件。
导航插件提供了一个 panRange 选项,应该可以满足您的需求。有关更多信息,请参阅jquery.flot.navigate.js的标头。
这将阻止它平移到未来:
xaxis: {panRange: [null, new Date()]},