0devco / chart

πŸ“Š JavaScript charting with @chartjs ⇆ chart ⇆ [ Vue + React ] ⇆ 0devco

Home Page:https://npmjs.com/@0devco/chart

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

install

# npm
npm -i @0devco/chart
# yarn
yarn add @0devco/chart

implementation

<canvas id="barChart" width="300" height="300"></canvas>
/* import @0devco/chart */
import chart from '@0devco/chart'
/* chart component */
let barChart = {
  type:'bar',
  id: 'barChart',
  multiple: 1,
  labels:['one','two','three'],
  label:[['one step']],
  data:[[54,13,15]],
  bgColor:[['red','green','blue']],
  bdrColor:[['black','black','black']],
  bdrWidth:[6]
}
/* call function */
chart().setup(barChart )

doc

courtesy

About

πŸ“Š JavaScript charting with @chartjs ⇆ chart ⇆ [ Vue + React ] ⇆ 0devco

https://npmjs.com/@0devco/chart

License:MIT License


Languages

Language:JavaScript 100.0%