ChartJS plugin that allows us to add pointer series of data to bar charts
new Chart(ctx, {
enable: true,
type: 'horizontalBar',
data: barChartData,
options: {
plugins: {
dataPointer: {
fontFamily: 'FontAwesome',
pointer: '\uf063',
position: 'top',
label: 'Clifford',
data: ["50", "30", "60"],
}
});
See /dist/index.html for example