简体   繁体   中英

How to get x-axis start value in Flot?

I would like to know how to get x-axis start value in JS library Flot. I know x-axis value in the start (obviously, because I fill it with my own data), but if you set:

pan: {
     interactive: true
}

Than the user is able to pan through graph ( example here ) and if the user pans through graph, the x-values change. I looked inside jquery.flot.js to find where this values are computed but with no luck.

I got it. The solution was in front of me the whole time (example):

 var axes = plot.getAxes();
 var min = axes.xaxis.min;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM