Does Flot offer us a function that will return the minimum and maximum dates of the data that is used in the chart?
To be clear, I'm not looking for a function that returns the min/max dates of the x-axis, but rather the min/max dates that exists within all the dataset that the chart is using. (i.e. I'm aware of the plot.getAxes().xaxis.max/min
functions that return the dates that are shown on the xaxis).
I'm guessing that Flot does "know" the min/max dates within a dataset, since it is able to dynamically create the xaxis date range properly. I'm hoping that it makes those dates available to us.