UNPKG

@swimlane/ngx-charts

Version:

Declarative Charting Framework for Angular2 and beyond!

29 lines 1.08 kB
import { NgModule } from '@angular/core'; import { ChartCommonModule } from '../common/chart-common.module'; import { PolarChartComponent } from './polar-chart.component'; import { PolarSeriesComponent } from './polar-series.component'; import { PieChartModule } from '../pie-chart/'; import { LineChartModule } from '../line-chart/'; export { PolarChartComponent, PolarSeriesComponent }; var PolarChartModule = (function () { function PolarChartModule() { } return PolarChartModule; }()); export { PolarChartModule }; PolarChartModule.decorators = [ { type: NgModule, args: [{ imports: [ChartCommonModule, PieChartModule, LineChartModule], declarations: [ PolarChartComponent, PolarSeriesComponent ], exports: [ PolarChartComponent, PolarSeriesComponent ] },] }, ]; /** @nocollapse */ PolarChartModule.ctorParameters = function () { return []; }; //# sourceMappingURL=polar-chart.module.js.map