igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
52 lines (51 loc) • 3.36 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 { AnnotationFactoryManager } from './AnnotationFactoryManager';
import { IgcCrosshairLayerModule } from './igc-crosshair-layer-module';
import { IgcCategoryToolTipLayerModule } from './igc-category-tool-tip-layer-module';
import { IgcItemToolTipLayerModule } from './igc-item-tool-tip-layer-module';
import { IgcUserAnnotationToolTipLayerModule } from './igc-user-annotation-tool-tip-layer-module';
import { IgcCategoryItemHighlightLayerModule } from './igc-category-item-highlight-layer-module';
import { IgcCategoryHighlightLayerModule } from './igc-category-highlight-layer-module';
import { IgcFinalValueLayerModule } from './igc-final-value-layer-module';
import { IgcCalloutLayerModule } from './igc-callout-layer-module';
import { IgcDataToolTipLayerModule } from './igc-data-tool-tip-layer-module';
import { IgcValueLayerModule } from './igc-value-layer-module';
import { IgcTrendLineLayerModule } from './igc-trend-line-layer-module';
import { IgcDataAnnotationBandLayerModule } from './igc-data-annotation-band-layer-module';
import { IgcDataAnnotationLineLayerModule } from './igc-data-annotation-line-layer-module';
import { IgcDataAnnotationRectLayerModule } from './igc-data-annotation-rect-layer-module';
import { IgcDataAnnotationSliceLayerModule } from './igc-data-annotation-slice-layer-module';
import { IgcDataAnnotationStripLayerModule } from './igc-data-annotation-strip-layer-module';
import { IgcUserAnnotationLayerModule } from './igc-user-annotation-layer-module';
import { IgcUserAnnotationInformationModule } from './igc-user-annotation-information-module';
import { FastItemObjectColumn } from "igniteui-webcomponents-core";
import { TypeRegistrar } from "igniteui-webcomponents-core";
export class IgcDataChartAnnotationModule {
static register() {
TypeRegistrar.register('AnnotationFactoryManager', AnnotationFactoryManager.$type);
IgcCrosshairLayerModule.register();
IgcCategoryToolTipLayerModule.register();
IgcItemToolTipLayerModule.register();
IgcUserAnnotationToolTipLayerModule.register();
IgcCategoryItemHighlightLayerModule.register();
IgcCategoryHighlightLayerModule.register();
IgcFinalValueLayerModule.register();
IgcCalloutLayerModule.register();
IgcDataToolTipLayerModule.register();
IgcValueLayerModule.register();
IgcTrendLineLayerModule.register();
IgcDataAnnotationBandLayerModule.register();
IgcDataAnnotationLineLayerModule.register();
IgcDataAnnotationRectLayerModule.register();
IgcDataAnnotationSliceLayerModule.register();
IgcDataAnnotationStripLayerModule.register();
IgcUserAnnotationLayerModule.register();
IgcUserAnnotationInformationModule.register();
TypeRegistrar.register('FastItemObjectColumn', FastItemObjectColumn.$type);
}
}