PlotEpochAxisForm.js
634 Bytes
/**
* 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')
];
return Ext.Array.merge(epochItems, this.callParent());
}
});