|
|
@@ -4,14 +4,15 @@ import {FormsModule} from '@angular/forms';
|
|
|
import {NgModule} from '@angular/core';
|
|
|
import {PlotlyModule} from 'angular-plotly.js';
|
|
|
|
|
|
-import {RegionGraphComponent} from './region-graph.component';
|
|
|
+import {AllInOneGraphComponent} from './all-in-one-graph/all-in-one-graph.component';
|
|
|
+import {RegionGraphComponent} from './region-graph/region-graph.component';
|
|
|
|
|
|
PlotlyModule.plotlyjs = Plotly;
|
|
|
|
|
|
@NgModule({
|
|
|
imports: [CommonModule, FormsModule, PlotlyModule],
|
|
|
- exports: [RegionGraphComponent],
|
|
|
- declarations: [RegionGraphComponent],
|
|
|
+ exports: [RegionGraphComponent, AllInOneGraphComponent],
|
|
|
+ declarations: [RegionGraphComponent, AllInOneGraphComponent],
|
|
|
providers: [],
|
|
|
})
|
|
|
-export class RegionGraphModule {}
|
|
|
+export class DotsModule {}
|