Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 403 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 403 Bytes

chart-bar

simple

<script type="module">
import { ChartBar } from "https://js.sabae.cc/Chart.js";

const data = {
  "A": 30,
  "B": 20,
  "C": 70,
};
const chart = new ChartBar(data);
document.body.appendChild(chart);
</script>

direct

import { ChartBar } from "https://code4fukui.github.io/chart-ban/chart-bar.js";