libs/plotly/src/lib/plotly.module.ts
The ploty module includes the following functionality:
import { NgModule } from '@angular/core';
import { HelgolandCoreModule } from '@helgoland/core';
import { PlotlyProfileGraphComponent } from './plotly-profile-graph/plotly-profile-graph.component';
/**
* The ploty module includes the following functionality:
* - plotly based profile chart component
*/
@NgModule({
declarations: [
PlotlyProfileGraphComponent
],
imports: [
HelgolandCoreModule
],
exports: [
PlotlyProfileGraphComponent
],
providers: []
})
export class HelgolandPlotlyModule { }