igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
37 lines (36 loc) • 2.24 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 { IgrDataPieChartCoreModule } from './igr-data-pie-chart-core-module';
import { IgrRadialPieSeriesModule } from './igr-radial-pie-series-module';
import { IgrOthersCategoryContextModule } from './igr-others-category-context-module';
import { IgrCrosshairLayerModule } from './igr-crosshair-layer-module';
import { IgrCalloutLayerModule } from './igr-callout-layer-module';
import { IgrItemToolTipLayerModule } from './igr-item-tool-tip-layer-module';
import { IgrCategoryToolTipLayerModule } from './igr-category-tool-tip-layer-module';
import { IgrCategoryHighlightLayerModule } from './igr-category-highlight-layer-module';
import { IgrCategoryItemHighlightLayerModule } from './igr-category-item-highlight-layer-module';
import { IgrDataToolTipLayerModule } from './igr-data-tool-tip-layer-module';
import { IgrNumberAbbreviatorModule } from './igr-number-abbreviator-module';
import { IgrDataChartInteractivityModule } from './igr-data-chart-interactivity-module';
import { IgrDataChartAnnotationModule } from './igr-data-chart-annotation-module';
export class IgrDataPieChartModule {
static register() {
IgrDataPieChartCoreModule.register();
IgrRadialPieSeriesModule.register();
IgrOthersCategoryContextModule.register();
IgrCrosshairLayerModule.register();
IgrCalloutLayerModule.register();
IgrItemToolTipLayerModule.register();
IgrCategoryToolTipLayerModule.register();
IgrCategoryHighlightLayerModule.register();
IgrCategoryItemHighlightLayerModule.register();
IgrDataToolTipLayerModule.register();
IgrNumberAbbreviatorModule.register();
IgrDataChartInteractivityModule.register();
IgrDataChartAnnotationModule.register();
}
}