Chartjs-Chart.js scatter/bubble pointstyle custom text

1👍

chartjs-plugin-datalabels does what you’re looking for. The positioning of the labels is largely customizable. A custom label formatter function for example lets you display text other than the data values.

Please take a look at the chartjs-plugin-datalabels samples, especially at Custom Labels.

Keep in mind that this plugin registers itself globally, meaning that once imported, all charts will display labels. In case you want it enabled only for a few charts, you first need to unregister it globally. Then, you can enabled the plugin for specific charts.

Leave a comment