0.0.11 β€’ Published 4 years ago

interactive-chart v0.0.11

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Interactive Chart

npm dependencies

πŸ“ˆ πŸ“‰ push datas and make interactive chart πŸ“Š

Demo

https://interactive-chart.vercel.app/

Line Chart

make chart with Canvas

npm.io

Pie Chart

make chart with SVG

npm.io

How to use

npm i interactive-chart
// Line Chart
new Line({
  selector: "root", // DOM element id,
  chartTitle: "Accountbook Line Chart", // chart title
  data, // chart data
});

// Pie Chart
new Pie({
  selector: "root", // DOM element id,
  chartTitle: "Accountbook Line Chart", // chart title
  data, // chart data
});
// data type
[
  {
    "month": 11,
    "data": [
      {
        "date": 1,
        "data": [
          { "type": "용돈", "amount": 3000 },
          { "type": "μƒν™œ", "amount": -30000 },
          { "type": "μ‡Όν•‘/λ·°ν‹°", "amount": -10000 }
        ]
      },
      {
        "date": 2,
        "data": [
          { "type": "μƒν™œ", "amount": -30000 },
          { "type": "식비", "amount": -50000 },
          { "type": "μ›”κΈ‰", "amount": 5000 }
        ]
      },
      ...
0.0.11

4 years ago

0.0.10

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago