[Vuejs]-Vue-chart.js : Getting partial data; chart not displaying well

0👍

Add a watcher to the vuex computed properties and trigger an update.

this.$data._chart.update()

Maybe your chart gets rendered before all your data is there.

Leave a comment