microting/ngx-charts

View on GitHub
demo/bubble-chart-interactive/bubble-chart-interactive.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { NgModule } from '@angular/core';
import { ChartCommonModule } from '../../src/common/chart-common.module';
import { BubbleChartInteractiveComponent } from './bubble-chart-interactive.component';
import { BubbleSeriesInteractiveComponent } from './bubble-series-interactive.component';

export { BubbleChartInteractiveComponent, BubbleSeriesInteractiveComponent };

@NgModule({
  imports: [ChartCommonModule],
  declarations: [
    BubbleChartInteractiveComponent,
    BubbleSeriesInteractiveComponent
  ],
  exports: [
    BubbleChartInteractiveComponent,
    BubbleSeriesInteractiveComponent
  ]
})
export class BubbleChartInteractiveModule {}