I am using FLOT chart to plot charts. The min and max value of Y-axis is getting set by itself(autoscale). Now I want to retrieve the min and max value of Y-axis and post it in some text boxes.I used the following code, but its not working.
$.plot($("#placehoder"),dataset,options);
var a=plot.getOptions().yaxes[0].min;
alert(a);