共1个回答
CA
游客CaPZzK

你可以通过this.$apexcharts全局变量来实现,调用时需要通过chart.id 指向当前图表。

this.$apexcharts.exec('vuechart-example', 'updateSeries', [{
  data: [40, 55, 65, 11, 23, 44, 54, 33]
}])

其中vuechart-example是图表的ID,updateSeries 是你想调用的方法。

更多信息参见:https://apexcharts.com/docs/methods/#exec