UNPKG

igniteui-react-charts

Version:

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

46 lines (45 loc) 2.9 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 { AnnotationFactoryManager } from './AnnotationFactoryManager'; import { IgrCrosshairLayerModule } from './igr-crosshair-layer-module'; import { IgrCategoryToolTipLayerModule } from './igr-category-tool-tip-layer-module'; import { IgrItemToolTipLayerModule } from './igr-item-tool-tip-layer-module'; import { IgrCategoryItemHighlightLayerModule } from './igr-category-item-highlight-layer-module'; import { IgrCategoryHighlightLayerModule } from './igr-category-highlight-layer-module'; import { IgrFinalValueLayerModule } from './igr-final-value-layer-module'; import { IgrCalloutLayerModule } from './igr-callout-layer-module'; import { IgrDataToolTipLayerModule } from './igr-data-tool-tip-layer-module'; import { IgrValueLayerModule } from './igr-value-layer-module'; import { IgrTrendLineLayerModule } from './igr-trend-line-layer-module'; import { IgrDataAnnotationBandLayerModule } from './igr-data-annotation-band-layer-module'; import { IgrDataAnnotationLineLayerModule } from './igr-data-annotation-line-layer-module'; import { IgrDataAnnotationRectLayerModule } from './igr-data-annotation-rect-layer-module'; import { IgrDataAnnotationSliceLayerModule } from './igr-data-annotation-slice-layer-module'; import { IgrDataAnnotationStripLayerModule } from './igr-data-annotation-strip-layer-module'; import { FastItemObjectColumn } from "igniteui-react-core"; import { TypeRegistrar } from "igniteui-react-core"; export class IgrDataChartAnnotationModule { static register() { TypeRegistrar.register('AnnotationFactoryManager', AnnotationFactoryManager.$type); IgrCrosshairLayerModule.register(); IgrCategoryToolTipLayerModule.register(); IgrItemToolTipLayerModule.register(); IgrCategoryItemHighlightLayerModule.register(); IgrCategoryHighlightLayerModule.register(); IgrFinalValueLayerModule.register(); IgrCalloutLayerModule.register(); IgrDataToolTipLayerModule.register(); IgrValueLayerModule.register(); IgrTrendLineLayerModule.register(); IgrDataAnnotationBandLayerModule.register(); IgrDataAnnotationLineLayerModule.register(); IgrDataAnnotationRectLayerModule.register(); IgrDataAnnotationSliceLayerModule.register(); IgrDataAnnotationStripLayerModule.register(); TypeRegistrar.register('FastItemObjectColumn', FastItemObjectColumn.$type); } }