DateZoomIntervalSelection.js
543 Bytes
Ext.define('amdaPlotComp.intervalSelection.DateZoomIntervalSelection', {
extend: 'amdaPlotComp.intervalSelection.ZoomIntervalSelection',
requires: ['amdaPlotComp.intervalSelection.InsertToTTCatlog'],
type: 'timeAxis',
title: "Zoom on time axis & Interval selection",
insertToTTCatlog: null,
initComponent: function () {
this.callParent(arguments);
this.insertToTTCatlog = new amdaPlotComp.intervalSelection.InsertToTTCatlog({ parent: this });
this.form.add(this.insertToTTCatlog);
},
});