@swimlane/ngx-charts
Version:
Declarative Charting Framework for Angular2 and beyond!
23 lines (20 loc) • 655 B
text/typescript
import { NgModule } from '@angular/core';
import { ChartCommonModule } from '../common/chart-common.module';
import { HeatMapCellComponent } from './heat-map-cell.component';
import { HeatCellSeriesComponent } from './heat-map-cell-series.component';
import { HeatMapComponent } from './heat-map.component';
export { HeatMapCellComponent, HeatCellSeriesComponent, HeatMapComponent };
({
imports: [ChartCommonModule],
declarations: [
HeatMapCellComponent,
HeatCellSeriesComponent,
HeatMapComponent
],
exports: [
HeatMapCellComponent,
HeatCellSeriesComponent,
HeatMapComponent
]
})
export class HeatMapModule {}