UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

29 lines (28 loc) 1.69 kB
/* 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 { IgcSizeScaleModule } from './igc-size-scale-module'; import { IgcValueBrushScaleModule } from './igc-value-brush-scale-module'; import { IgcCustomPaletteColorScaleModule } from './igc-custom-palette-color-scale-module'; import { IgcBubbleSeriesModule } from './igc-bubble-series-module'; import { IgcScatterSeriesModule } from './igc-scatter-series-module'; import { IgcScatterLineSeriesModule } from './igc-scatter-line-series-module'; import { IgcScatterSplineSeriesModule } from './igc-scatter-spline-series-module'; import { IgcHighDensityScatterSeriesModule } from './igc-high-density-scatter-series-module'; import { IgcDataChartScatterCoreModule } from './igc-data-chart-scatter-core-module'; export class IgcDataChartScatterModule { static register() { IgcSizeScaleModule.register(); IgcValueBrushScaleModule.register(); IgcCustomPaletteColorScaleModule.register(); IgcBubbleSeriesModule.register(); IgcScatterSeriesModule.register(); IgcScatterLineSeriesModule.register(); IgcScatterSplineSeriesModule.register(); IgcHighDensityScatterSeriesModule.register(); IgcDataChartScatterCoreModule.register(); } }