chartjs-plugin-annotation
can be integrated with plain JavaScript or with different module loaders. The examples below show to load the plugin in different systems.
# Script Tag
<script src="path/to/chartjs/dist/chart.umd.js"></script>
<script src="path/to/chartjs-plugin-annotation/dist/chartjs-plugin-annotation.min.js"></script>
<script>
const myChart = new Chart(ctx, {...});
</script>
# Bundlers (Webpack, Rollup, etc.)
import { Chart } from 'chart.js';
import annotationPlugin from 'chartjs-plugin-annotation';
Chart.register(annotationPlugin);
← Getting Started Usage →