UNPKG

igniteui-react-charts

Version:

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

35 lines (34 loc) 2.08 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 { IgrDataChartToolbarIconsModule } from './igr-data-chart-toolbar-icons-module'; import { IgrDataChartAnnotationModule } from './igr-data-chart-annotation-module'; import { IgrAnnotationLayerProxyModule } from './igr-annotation-layer-proxy-module'; import { IgrDataChartCategoryTrendLineModule } from './igr-data-chart-category-trend-line-module'; import { IgrDataChartInteractivityModule } from './igr-data-chart-interactivity-module'; import { IgrCalloutLayerModule } from './igr-callout-layer-module'; import { IgrValueLayerModule } from './igr-value-layer-module'; import { IgrCrosshairLayerModule } from './igr-crosshair-layer-module'; import { DataChartToolbarFactoryManager } from './DataChartToolbarFactoryManager'; import { TypeRegistrar } from "igniteui-react-core"; var IgrDataChartToolbarModule = /** @class */ /*@__PURE__*/ (function () { function IgrDataChartToolbarModule() { } IgrDataChartToolbarModule.register = function () { IgrDataChartToolbarIconsModule.register(); IgrDataChartAnnotationModule.register(); IgrAnnotationLayerProxyModule.register(); IgrDataChartCategoryTrendLineModule.register(); IgrDataChartInteractivityModule.register(); IgrCalloutLayerModule.register(); IgrValueLayerModule.register(); IgrCrosshairLayerModule.register(); TypeRegistrar.register('DataChartToolbarFactoryManager', DataChartToolbarFactoryManager.$type); DataChartToolbarFactoryManager.register(); }; return IgrDataChartToolbarModule; }()); export { IgrDataChartToolbarModule };