Skip to content

Latest commit

 

History

History

exports

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Getting started

Angular4 UI plugin with ECharts

Welcome

Welcome to @Rebirth/ECharts. This repo is Angular4 ui library for ECharts. And it is being built from scratch in Typescript.

You can check Demo Showcase & API document.

Dependencies

@Rebirth/ECharts is all base on Angular4 and Chart.js. The only required dependencies are:

  • Angular (requires Angular version 4.0.0 or higher)
  • ECharts (ECharts 3.4.0)

Installation

After installing the above dependencies, install @Rebirth/UI via:

npm install --save rebirth-echarts

Once installed you need to import our main module.

import { RebirthEChartsModule } from 'rebirth-echarts';

Then use RebirthEChartsModule to declare on your feature module:

@NgModule({
  imports: [CommonModule, FormsModule, RebirthEChartsModule],
  exports: [DemoComponent],
  declarations: [DemoComponent],
  providers: [],
})
export class DemoModule {

}

FAQ

  • Please check github issue for your common problems / solutions.