Class type Ext_chart_Navigation.t


class type t = object .. end
Inherits
method restoreZoom : unit Js.meth

Restores the zoom to the original value. This can be used to reset the previous zoom state set by setZoom. For example:

myChart.restoreZoom();

method setZoom : 'a. 'a Js.t -> unit Js.meth

Zooms the chart to the specified selection range. Can be used with a selection mask. For example:

items: {
    xtype: 'chart',
    animate: true,
    store: store1,
    mask: 'horizontal',
    listeners: {
        select: {
            fn: function(me, selection) {
                me.setZoom(selection);
                me.mask.hide();
            }
        }
    }
}

Parameters: