Blame view

js/app/views/PlotComponents/PlotEpochAxisForm.js 634 Bytes
abe09878   Benjamin Renard   Add panels and ax...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * 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,
	
	getFormItems: function() {
		var epochItems = [
	    	this.addStandardCheck('axis-epoch-normalized', 'Normalized')             
		];
		
003ba315   Benjamin Renard   Add Epoch Plot an...
22
		return Ext.Array.merge(epochItems, this.callParent());
abe09878   Benjamin Renard   Add panels and ax...
23
24
	}
});