swimlane/ngx-charts

View on GitHub
src/app/custom-charts/bubble-chart-interactive/bubble-chart-interactive.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { NgModule } from '@angular/core';
import { ChartCommonModule } from '@swimlane/ngx-charts//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 {}