Chartjs-Vue Chart JS options aren't used

0👍

in your fillData it looks like you assign the options wrong. Vue Chartjs expects an object with the options in it and not an object with an field options with the options.

If you change: this.customChartOptions = {options: this.options} to: this.customChartOptions = this.options it should work

Leave a comment