chart.options.zoomed parameter
In some cases I would like to know from outside the chart if the chart is in a zoomed in status or not without having to record initial state and later compare. This should be quite easy to do internally as you are already monitor this status for the "reset zoom" button.
See discussion : http://highslide.com/forum/viewtopic.php?f=9&t=24822
9
votes
valugi
shared this idea
The simples test would be to look for the button:
if (chart.resetZoomButton) {
// doSomething();
}