With ChartJS we can create a chart instance like this:
const chart = new Chart(ctx, config);
If we update the config
object does ChartJS have a method for performing the update by just passing in the new object?
For example with Apache ECharts we can do it like this:
this.chartInstance.setOption(this.options);