ezy-chart
TypeScript icon, indicating that this package has built-in type declarations

0.5.6 • Public • Published

Angular components based on Chart.js

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

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

  • Install Node.js and yarn
  • Install local dev dependencies: yarn while current directory is this repo

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

Readme

Keywords

Package Sidebar

Install

npm i ezy-chart

Weekly Downloads

2

Version

0.5.6

License

MIT

Unpacked Size

656 kB

Total Files

27

Last publish

Collaborators

  • tanzh
  • bravurasolutions