Blame view

js/app/views/PlotComponents/PlotSpectroForm.js 1.12 KB
17433635   Benjamin Renard   Add series and sp...
1
2
3
4
/**
 * Project   : AMDA-NG
 * Name      : PlotSpectroForm.js
 * @class   amdaPlotComp.PlotSpectroForm
a0bf9157   Benjamin Renard   Add tick plot and...
5
 * @extends amdaPlotComp.PlotStandardForm
17433635   Benjamin Renard   Add series and sp...
6
7
8
9
10
11
12
13
14
15
16
17
18
 * @brief   Form to define specifics spectro options
 * @author  Benjamin Renard
 * @version $Id: PlotSpectroForm.js benjamin $
 */

Ext.define('amdaPlotComp.PlotSpectroForm', {
	extend: 'amdaPlotComp.PlotStandardForm',
	
	setObject : function(object) {
		this.object = object.get('param-drawing-object');
		this.loadRecord(this.object);
	},
	
df008372   Benjamin Renard   Min/max value def...
19
20
	getValuesRangeItems: function() {
		return [
afb7b464   Benjamin Renard   Fix decimal preci...
21
22
		        this.addStandardFloat2('spectro-value-min', 'Min value', -Number.MAX_VALUE, Number.MAX_VALUE, true),
		        this.addStandardFloat2('spectro-value-max', 'Max value', -Number.MAX_VALUE, Number.MAX_VALUE, true)
df008372   Benjamin Renard   Min/max value def...
23
24
25
		];
	},
	
17433635   Benjamin Renard   Add series and sp...
26
	getFormItems: function() {
dbb7bcbe   Benjamin Renard   Add curves defint...
27
		var me = this;
17433635   Benjamin Renard   Add series and sp...
28
		return [
dbb7bcbe   Benjamin Renard   Add curves defint...
29
		    this.addStandardCombo('spectro-yaxis', 'Y axis', amdaPlotObj.PlotObjectConfig.availableYAxes, function(name, value, oldValue) {
e84ed2cf   Benjamin Renard   Add Interval Tick...
30
31
		    	me.object.set('spectro-yaxis', value);
        		me.crtTree.refresh();
df008372   Benjamin Renard   Min/max value def...
32
		    }),
d419cd2c   Elena.Budnik   min/max threshold...
33
		    this.addStandardFieldSet('Min/Max thresholds', '', this.getValuesRangeItems())
17433635   Benjamin Renard   Add series and sp...
34
35
		];
	}
afb7b464   Benjamin Renard   Fix decimal preci...
36
});