import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { NgZorroAntdModule } from 'ng-zorro-antd'; import { HighlightModule } from 'ngx-highlightjs'; import { NgxEchartsModule } from 'ngx-echarts'; import { ClipboardModule } from 'ngx-clipboard'; import { ENgxPrintModule } from 'e-ngx-print'; import { BarChartRoutingModule } from './bar-chart-routing.module'; import { BarChartComponent } from './base-bar-chart/bar-chart.component'; import { HorizontalChartComponent } from './horizontal-chart/horizontal-chart.component'; import { HorizontalSubChartComponent } from './horizontal-sub-chart/horizontal-sub-chart.component'; import { SubBarChartComponent } from './sub-bar-chart/sub-bar-chart.component'; import { NegativeBarChartComponent } from './negative-bar-chart/negative-bar-chart.component'; import { NegativeBarSubChartComponent } from './negative-bar-sub-chart/negative-bar-sub-chart.component' import { StackColumnChartComponent } from './stack-column-chart/stack-column-chart.component'; import { StackColumnSubChartComponent } from './stack-column-sub-chart/stack-column-sub-chart.component'; import { PyramidBarChartComponent } from './pyramid-bar-chart/pyramid-bar-chart.component'; import { PyramidSubBarChartComponent } from './pyramid-sub-bar-chart/pyramid-sub-bar-chart.component'; import { TestBaseBarSubChartComponent } from './test-base-bar-sub-chart/test-base-bar-sub-chart.component'; import { NegativeBarSubChartNewComponent } from './negative-bar-sub-chart-new/negative-bar-sub-chart-new.component' import { ChartModule } from 'bcac-lib/business-component/chart'; import { StackColumnSubChartNewComponent } from './stack-column-sub-chart-new/stack-column-sub-chart-new.component'; import { PyramidSubBarChartNewComponent } from './pyramid-sub-bar-chart-new/pyramid-sub-bar-chart-new.component'; @NgModule({ declarations: [ BarChartComponent, HorizontalChartComponent, HorizontalSubChartComponent, SubBarChartComponent, NegativeBarChartComponent, NegativeBarSubChartComponent, StackColumnChartComponent, StackColumnSubChartComponent, PyramidBarChartComponent, PyramidSubBarChartComponent, TestBaseBarSubChartComponent, NegativeBarSubChartNewComponent, StackColumnSubChartNewComponent, PyramidSubBarChartNewComponent ], imports: [ CommonModule, BarChartRoutingModule, NgZorroAntdModule, HighlightModule, NgxEchartsModule, ClipboardModule, ENgxPrintModule, ChartModule ] }) export class BarChartModule { }