This library provides OCaml bindings for the Chart.js charting library and some popular plugins.
Following chart types are currently supported:
- Line
- Bar
- Horizontal bar
- Pie
- Doughnut
Install the library and its dependencies via OPAM
opam install chartjsdune build @install
dune installPlease notice that chartjs-ocaml just provides bindings for the Chart.js
library and its most popular plugins, so be sure to include corresponding
javascript files to your web application, like:
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected]"></script>Basic usage examples can be found in the examples directory.
| Filename | Description |
|---|---|
| README | this file |
| LICENSE | license and copyright notice |
| lib/ | bindings for the Chart.js core library |
| plugins/streaming | bindings for the chartjs-plugin-streaming |
| plugins/datalabels | bindings for the chartjs-plugin-datalabels |
| plugins/annotation | bindings for the chartjs-plugin-annotation |
| plugins/colorschemes | bindings for the chartjs-plugin-colorschemes |
| examples/ | basic library usage examples |