@0devco/chart

0devco javascript data charting with chartjs

Usage no npm install needed!

<script type="module">
  import 0devcoChart from 'https://cdn.skypack.dev/@0devco/chart';
</script>

README

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