src/line/line-component.module.ts
This module provides the Line Component and helper interfaces, enums, for drawing line plots containing potentially multiple lines.
import { NgModule } from '@angular/core';
import { LineComponent } from './line.component';
export { LineComponent } from './line.component';
export { HighlightAction } from './highlight-action.enum';
export { HighlightCommand } from './highlight-command';
export { LINE_PLOT_OPTIONS, defaultLineOptions } from './line-options';
/**
* This module provides the Line Component and helper interfaces, enums,
* for drawing line plots containing potentially multiple lines.
*/
@NgModule({
declarations: [ LineComponent ],
exports: [ LineComponent ]
})
export class LineComponentModule {}