NumberZoomIntervalSelection.js 523 Bytes
Ext.define('amdaPlotComp.intervalSelection.NumberZoomIntervalSelection', {
    extend: 'amdaPlotComp.intervalSelection.ZoomIntervalSelection', // This class extends from amdaPlotComp.intervalSelection.IntervalSelection

    field1Type: 'numberfield',
    field1Label: 'Min Value',
    field1Format: null,
    field2Type: 'numberfield',
    field2Label: 'Max value',
    field2Format: null,

    type: null,
    initComponent: function () {
        this.callParent(arguments);
        this._removeUseTimeButton();
    }
});