Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.1 KB

Chartjs-Plugins.md

File metadata and controls

30 lines (20 loc) · 1.1 KB

Chart.js Plugins

Chartkick works with Chart.js global plugins. Here’s how to add the annotation plugin.

For Importmaps, download the UMD version to vendor/javascript, change the extension from .cjs to .js, pin it in config/importmap.rb, and use:

import "chartjs-plugin-annotation"

For esbuild, rollup.js, Webpack, and Webpacker, install the NPM package and use:

import { Chart } from "chart.js"
import annotationPlugin from "chartjs-plugin-annotation"

Chart.register(annotationPlugin)

For Sprockets, download the UMD version to vendor/assets/javascripts, change the extension from .cjs to .js, and use:

//= require chartjs-plugin-annotation

Then use the library option to apply it to charts:

<%= line_chart data, library: {plugins: {annotation: {annotations: {line1: {type: "line", yMin: 2, yMax: 2}}}}} %>