Skip to content

Instantly share code, notes, and snippets.

@kylelix7
Created November 4, 2019 04:07
Show Gist options
  • Save kylelix7/a3bb025afa21d2ec3773c4797fddca50 to your computer and use it in GitHub Desktop.
Save kylelix7/a3bb025afa21d2ec3773c4797fddca50 to your computer and use it in GitHub Desktop.
NgxChartsModule
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgxChartsModule } from '@swimlane/ngx-charts';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgxChartsModule,
BrowserAnimationsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment