[Chartjs]-Vue ChartJS is not updating

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.

Leave a comment