Does ChartJS have an API method for updating the chart instance configuration with a single call?

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);