https://Ventrom.github.io/Ventrom/ng2-dcjs/demo/
A collection of Angular2 components to render dcjs charts
Install through npm:
npm install --save github:ventrom/ng2-dcjs
To use the module, first import it in your app:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { DcjsModule } from 'ng2-dcjs';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
DcjsModule
],
declarations: [],
bootstrap: [ AppComponent ]
})
export class AppModule {}
All documentation is auto-generated from the source via typedoc.
npm install
while current directory is this repoMIT