0👍
You define the options prop only and not the chartdata prop:
props: ["options"],
but you use both of them
this.renderChart(this.chartData, this.options);
See Example
Also please pay attention to all the mentioned caveats in the section “Updating charts” of the guide.
- [Chartjs]-Hide all labels and tooltips in Chart.js and make it very small size
- [Chartjs]-Error with Chart.js : TypeError: t is undefined
Source:stackexchange.com