You need to sign in before continuing.

Blame view

js/app/views/PlotComponents/intervalSelection/NumberZoomIntervalSelection.js 523 Bytes
1591d4c2   Menouar AZIB   Basic functionali...
1
2
3
4
5
6
7
8
9
10
11
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,
2dc9b65a   Menouar AZIB   All refactored cm...
12
13
14
15
    initComponent: function () {
        this.callParent(arguments);
        this._removeUseTimeButton();
    }
1591d4c2   Menouar AZIB   Basic functionali...
16
});