Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
Prateeksha Singh 1eb6ccf471
Update README
il y a 7 ans
dist update aggr chart and heatmap il y a 7 ans
docs update aggr chart and heatmap il y a 7 ans
src update aggr chart and heatmap il y a 7 ans
.babelrc add babel, eslint; dom and utils modules il y a 7 ans
.eslintrc.json add babel, eslint; dom and utils modules il y a 7 ans
.gitignore add .gitignore il y a 7 ans
LICENSE Initial commit il y a 7 ans
README.md Update README il y a 7 ans
package-lock.json add css compiler, watcher and livereload il y a 7 ans
package.json add css compiler, watcher and livereload il y a 7 ans
rollup.config.js add css compiler, watcher and livereload il y a 7 ans

README.md

Frappé Charts

GitHub-inspired simple and modern charts with zero dependencies.

https://frappe.github.io/charts

graphs

Usage

Include it in your html:

<script src="frappe-charts.min.js"></script>

Make a new Chart:

let data = {
  labels: ["12am-3am", "3am-6am", "6am-9am", "9am-12pm",
    "12pm-3pm", "3pm-6pm", "6pm-9pm", "9pm-12am"],

  datasets: [
    {
      title: "Some Data", color: "light-blue",
      values: [25, 40, 30, 35, 8, 52, 17, -4]
    },
    {
      title: "Another Set", color: "violet",
      values: [25, 50, -10, 15, 18, 32, 27, 14]
    }
  ]
};

let chart = new Chart({
  parent: "#chart",
  title: "My Awesome Chart",
  data: data,
  type: 'bar', // or 'line', 'scatter', 'percentage'
  height: 250
});

If you want to contribute:

  1. Clone this repo.
  2. cd into project directory
  3. npm install
  4. npm run dev

License: MIT


Project maintained by frappe