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.
我正在使用基于 jqPlot 的正常折线图。您可以放大和缩小(使用双击)。此外,我有一个基于 jquery 插件的日期选择器。
当人们放大折线图时,是否可以设置两个日期选择器字段(从和到)?
再见
您可以绑定 jqplot 的缩放事件并获取缩放数据的最小值和最大值,然后根据这些值更新您的日期选择器:
$("#chart1").bind('jqplotZoom, function(){ var from = new Date(plot.axes.xaxis.min); var to = new Date(plot.axes.xaxis.max); //Update your datepicker here. });