Blame view

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

Ext.define('amdaPlotComp.PlotStatusBarForm', {
	extend: 'amdaPlotComp.PlotStandardForm',
	
	setObject : function(object) {
		this.object = object.get('param-drawing-object');
		this.loadRecord(this.object);
	},
	
	getFormItems: function() {
5b1abd71   Erdogan Furkan   7616 - Adding col...
20
		return [this.addColorsPicker('statusbar-color', 'Color', amdaPlotObj.PlotObjectConfig.availableColorsNew, 'none')
a0bf9157   Benjamin Renard   Add tick plot and...
21
22
23
		];
	}
});