UNPKG

igniteui-react-charts

Version:

Ignite UI React 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 { IgrSizeScaleModule } from './igr-size-scale-module'; import { IgrValueBrushScaleModule } from './igr-value-brush-scale-module'; import { IgrCustomPaletteColorScaleModule } from './igr-custom-palette-color-scale-module'; import { IgrBubbleSeriesModule } from './igr-bubble-series-module'; import { IgrScatterSeriesModule } from './igr-scatter-series-module'; import { IgrScatterLineSeriesModule } from './igr-scatter-line-series-module'; import { IgrScatterSplineSeriesModule } from './igr-scatter-spline-series-module'; import { IgrHighDensityScatterSeriesModule } from './igr-high-density-scatter-series-module'; import { IgrDataChartScatterCoreModule } from './igr-data-chart-scatter-core-module'; export class IgrDataChartScatterModule { static register() { IgrSizeScaleModule.register(); IgrValueBrushScaleModule.register(); IgrCustomPaletteColorScaleModule.register(); IgrBubbleSeriesModule.register(); IgrScatterSeriesModule.register(); IgrScatterLineSeriesModule.register(); IgrScatterSplineSeriesModule.register(); IgrHighDensityScatterSeriesModule.register(); IgrDataChartScatterCoreModule.register(); } }