Blame view

js/app/views/PlotComponents/PlotTimeAxisForm.js 729 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      : PlotTimeAxisForm.js
 * @class   amdaPlotComp.PlotTimeAxisForm
 * @extends amdaPlotComp.PlotBaseAxisForm
 * @brief   Form to define specifics time axis options
 * @author  Benjamin Renard
 * @version $Id: PlotTimeAxisForm.js benjamin $
 */

Ext.define('amdaPlotComp.PlotTimeAxisForm', {
	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
23
24
25
	
	getFormItems: function() {
		var timeItems = [
	    	this.addStandardCombo('axis-time-format', 'Time Format', amdaPlotObj.PlotObjectConfig.availableTimeAxisFormats)             
		];
		
		return Ext.Array.merge(timeItems, this.callParent());
	}
});