Blame view

js/app/views/PlotComponents/PlotEpochAxisForm.js 686 Bytes
abe09878   Benjamin Renard   Add panels and ax...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * Project   : AMDA-NG
 * Name      : PlotEpochAxisForm.js
 * @class   amdaPlotComp.PlotEpochAxisForm
 * @extends amdaPlotComp.PlotBaseAxisForm
 * @brief   Form to define specifics epoch axis options
 * @author  Benjamin Renard
 * @version $Id: PlotEpochAxisForm.js benjamin $
 */

Ext.define('amdaPlotComp.PlotEpochAxisForm', {
	extend: 'amdaPlotComp.PlotBaseAxisForm',
	
	showScaleOption  : false,
	showRangeOptions : false,
42e982bf   Hacene SI HADJ MOHAND   us 6954 ok
16
                    showTicksNumberSpacing : false,
abe09878   Benjamin Renard   Add panels and ax...
17
18
19
20
21
22
	
	getFormItems: function() {
		var epochItems = [
	    	this.addStandardCheck('axis-epoch-normalized', 'Normalized')             
		];
		
003ba315   Benjamin Renard   Add Epoch Plot an...
23
		return Ext.Array.merge(epochItems, this.callParent());
abe09878   Benjamin Renard   Add panels and ax...
24
25
	}
});