I have this data
chartLabels = ['2018', '2019', '2020', 'TTM',]
priceToSaleRatioData = [3.37, 5.73, 1.88, 4.6,]
I want this to display over each bullet in my line chart But it should be Permanently written in some box.
Here's my jsfiddle with the code I got so far.
You can use the
chartjs-plugin-datalabels
plugin.First you'll have to register the plugin, then you can define the desired options inside
options.plugins.datalabels
.Please take a look at the runnable code below and see how it works.