0.5.6 • Published 3 years ago

ezy-chart v0.5.6

Weekly downloads
9
License
MIT
Repository
github
Last release
3 years ago

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

0.5.6

3 years ago

0.5.5

3 years ago

0.5.4

3 years ago

0.6.0-beta.1

3 years ago

0.5.3

3 years ago

0.5.2

3 years ago

0.5.1

3 years ago

0.5.0-beta.3

3 years ago

0.5.0-beta.2

4 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.1.3

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago