Ventrom / ng2-dcjs

MIT License
0 stars 2 forks source link

Angular2 Components for dc.js

Build Status npm version devDependency Status GitHub issues GitHub stars GitHub license

Demo

https://Ventrom.github.io/Ventrom/ng2-dcjs/demo/

Table of contents

About

A collection of Angular2 components to render dcjs charts

Installation

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 {}

Documentation

All documentation is auto-generated from the source via typedoc.

Development

Prepare your environment

License

MIT