Skip to content

Latest commit

Β 

History

History
46 lines (35 loc) Β· 976 Bytes

README.md

File metadata and controls

46 lines (35 loc) Β· 976 Bytes

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