ezy-chart
v0.5.6
Published
Angular components based on Chart.js and ECharts
Downloads
22
Readme
Angular components based on Chart.js
Demo
https://ztan.github.io/ezy-chart/
Table of contents
About
Angular components based on Chart.js and ECharts
Installation
Install through npm:
npm install --save ezy-chart
Then include in your apps module:
import { NgModule } from '@angular/core';
import { ChartsModule } from 'ezy-chart';
@NgModule({
imports: [
ChartsModule
]
})
export class MyModule {}
Finally use in one of your apps components:
import { Component } from '@angular/core';
@Component({
template: '<ezy-chart type="bar" [datasets]="chartDatasets"></ezy-chart>'
})
export class MyComponent {
chartDatasets: Chart.ChartDataSets[] = [{ data: [12, 19, 3, 5, 2, 3], label: 'series 1' }];
}
You may also find it useful to view the demo source.
Documentation
All documentation is auto-generated from the source via compodoc and can be viewed here: https://ztan.github.io/ezy-chart/docs/
Development
Prepare your environment
Development server
Run yarn start
to start a development server on port 8000 with auto reload + tests.
Testing
Run yarn test
to run tests once or yarn run test:watch
to continually run tests.
Release
- Bump the version in package.json (once the module hits 1.0 this will become automatic)
yarn run release
License
MIT