UNPKG

ngx-graph-new

Version:

Modify the ngx-chart version is used

19 lines (17 loc) 436 B
import { NgModule } from '@angular/core'; import { GraphComponent } from './graph.component'; import { ChartCommonModule } from 'ngx-charts'; import { MouseWheelDirective } from './mouse-wheel.directive'; export { GraphComponent }; @NgModule({ imports: [ChartCommonModule], declarations: [ GraphComponent, MouseWheelDirective ], exports: [ GraphComponent, MouseWheelDirective ] }) export class GraphModule {}