UNPKG

igniteui-webcomponents-charts

Version:

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

37 lines (36 loc) 2.24 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 { IgcDataPieChartCoreModule } from './igc-data-pie-chart-core-module'; import { IgcRadialPieSeriesModule } from './igc-radial-pie-series-module'; import { IgcOthersCategoryContextModule } from './igc-others-category-context-module'; import { IgcCrosshairLayerModule } from './igc-crosshair-layer-module'; import { IgcCalloutLayerModule } from './igc-callout-layer-module'; import { IgcItemToolTipLayerModule } from './igc-item-tool-tip-layer-module'; import { IgcCategoryToolTipLayerModule } from './igc-category-tool-tip-layer-module'; import { IgcCategoryHighlightLayerModule } from './igc-category-highlight-layer-module'; import { IgcCategoryItemHighlightLayerModule } from './igc-category-item-highlight-layer-module'; import { IgcDataToolTipLayerModule } from './igc-data-tool-tip-layer-module'; import { IgcNumberAbbreviatorModule } from './igc-number-abbreviator-module'; import { IgcDataChartInteractivityModule } from './igc-data-chart-interactivity-module'; import { IgcDataChartAnnotationModule } from './igc-data-chart-annotation-module'; export class IgcDataPieChartModule { static register() { IgcDataPieChartCoreModule.register(); IgcRadialPieSeriesModule.register(); IgcOthersCategoryContextModule.register(); IgcCrosshairLayerModule.register(); IgcCalloutLayerModule.register(); IgcItemToolTipLayerModule.register(); IgcCategoryToolTipLayerModule.register(); IgcCategoryHighlightLayerModule.register(); IgcCategoryItemHighlightLayerModule.register(); IgcDataToolTipLayerModule.register(); IgcNumberAbbreviatorModule.register(); IgcDataChartInteractivityModule.register(); IgcDataChartAnnotationModule.register(); } }