region-graph.module.ts 512 B

1234567891011121314151617
  1. import Plotly from 'plotly.js-dist-min';
  2. import {CommonModule} from '@angular/common';
  3. import {FormsModule} from '@angular/forms';
  4. import {NgModule} from '@angular/core';
  5. import {PlotlyModule} from 'angular-plotly.js';
  6. import {RegionGraphComponent} from './region-graph.component';
  7. PlotlyModule.plotlyjs = Plotly;
  8. @NgModule({
  9. imports: [CommonModule, FormsModule, PlotlyModule],
  10. exports: [RegionGraphComponent],
  11. declarations: [RegionGraphComponent],
  12. providers: [],
  13. })
  14. export class RegionGraphModule {}