1👍
First of all, your "series" key of "seriesData" is trying to access props.name, that does not exist.
Try using computed instead of reactive for seriesData creation.
let seriesData = computed({ ... })
0👍
I changed this to options api and solved it.
highcharts-vue does not support composition api.
- [Vuejs]-Vue 3 v-model binding not working when passing filtered data
- [Vuejs]-Insert string in a class in a vue js component
Source:stackexchange.com