igniteui-react-core
Version:
Ignite UI React Core.
37 lines (36 loc) • 2.27 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 { Base, markType } from "./type";
import { SizeScaleDescriptionModule } from "./SizeScaleDescriptionModule";
import { ValueBrushScaleDescriptionModule } from "./ValueBrushScaleDescriptionModule";
import { CustomPaletteColorScaleDescriptionModule } from "./CustomPaletteColorScaleDescriptionModule";
import { BubbleSeriesDescriptionModule } from "./BubbleSeriesDescriptionModule";
import { ScatterSeriesDescriptionModule } from "./ScatterSeriesDescriptionModule";
import { ScatterLineSeriesDescriptionModule } from "./ScatterLineSeriesDescriptionModule";
import { ScatterSplineSeriesDescriptionModule } from "./ScatterSplineSeriesDescriptionModule";
import { HighDensityScatterSeriesDescriptionModule } from "./HighDensityScatterSeriesDescriptionModule";
import { DataChartScatterCoreDescriptionModule } from "./DataChartScatterCoreDescriptionModule";
/**
* @hidden
*/
export let DataChartScatterDescriptionModule = /*@__PURE__*/ (() => {
class DataChartScatterDescriptionModule extends Base {
static register(a) {
SizeScaleDescriptionModule.register(a);
ValueBrushScaleDescriptionModule.register(a);
CustomPaletteColorScaleDescriptionModule.register(a);
BubbleSeriesDescriptionModule.register(a);
ScatterSeriesDescriptionModule.register(a);
ScatterLineSeriesDescriptionModule.register(a);
ScatterSplineSeriesDescriptionModule.register(a);
HighDensityScatterSeriesDescriptionModule.register(a);
DataChartScatterCoreDescriptionModule.register(a);
}
}
DataChartScatterDescriptionModule.$t = /*@__PURE__*/ markType(DataChartScatterDescriptionModule, 'DataChartScatterDescriptionModule');
return DataChartScatterDescriptionModule;
})();