Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

chart-js-pointer-plugin

scotthsieh050312MIT0.1.1

allows chartjs to add arrow pointing to specific data points

chartjs, plugin, chartjs-plugin

readme

chart-js-pointer-plugin

ChartJS plugin that allows us to add pointer series of data to bar charts

alt text

Currently only works with horizontalBar

Sample options:

new Chart(ctx, {
enable: true,
type: 'horizontalBar',
data: barChartData,
options: {
plugins: {
dataPointer: {
fontFamily: 'FontAwesome',
pointer: '\uf063',
label: 'Clifford',
data: ["50", "30", "60"],
}
});

How to use

See /dist/index.html for example