[Chartjs]-How do I add a title to a chart from chart.js?

2👍

Having a look to your code, it seems there is a typo.
You wrote titel instead of title.

plugins: {
               legend: {position: 'top',},
               title: {display: true, text: '%titel%'}, // <-- title!
              },

Leave a comment