import Plotly from 'plotly.js-dist-min'; import {CommonModule} from '@angular/common'; import {FormsModule} from '@angular/forms'; import {NgModule} from '@angular/core'; import {PlotlyModule} from 'angular-plotly.js'; import {RegionGraphComponent} from './region-graph.component'; PlotlyModule.plotlyjs = Plotly; @NgModule({ imports: [CommonModule, FormsModule, PlotlyModule], exports: [RegionGraphComponent], declarations: [RegionGraphComponent], providers: [], }) export class RegionGraphModule {}