igniteui-react-core
Version:
Ignite UI React Core.
37 lines (36 loc) • 2.2 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { Base, markType } from "./type";
import { CategoryDateTimeXAxisDescriptionModule } from "./CategoryDateTimeXAxisDescriptionModule";
import { TimeAxisBreakDescriptionModule } from "./TimeAxisBreakDescriptionModule";
import { TimeAxisIntervalDescriptionModule } from "./TimeAxisIntervalDescriptionModule";
import { TimeAxisLabelFormatDescriptionModule } from "./TimeAxisLabelFormatDescriptionModule";
import { TimeXAxisDescriptionModule } from "./TimeXAxisDescriptionModule";
import { OrdinalTimeXAxisDescriptionModule } from "./OrdinalTimeXAxisDescriptionModule";
import { DataChartCoreDescriptionModule } from "./DataChartCoreDescriptionModule";
/**
* @hidden
*/
var DataChartExtendedAxesDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataChartExtendedAxesDescriptionModule, _super);
function DataChartExtendedAxesDescriptionModule() {
return _super !== null && _super.apply(this, arguments) || this;
}
DataChartExtendedAxesDescriptionModule.register = function (a) {
CategoryDateTimeXAxisDescriptionModule.register(a);
TimeAxisBreakDescriptionModule.register(a);
TimeAxisIntervalDescriptionModule.register(a);
TimeAxisLabelFormatDescriptionModule.register(a);
TimeXAxisDescriptionModule.register(a);
OrdinalTimeXAxisDescriptionModule.register(a);
DataChartCoreDescriptionModule.register(a);
};
DataChartExtendedAxesDescriptionModule.$t = markType(DataChartExtendedAxesDescriptionModule, 'DataChartExtendedAxesDescriptionModule');
return DataChartExtendedAxesDescriptionModule;
}(Base));
export { DataChartExtendedAxesDescriptionModule };