gpt4 book ai didi

vue.js - Apexcharts 中 dataPointSelection 事件的返回值

转载 作者:搜寻专家 更新时间:2023-10-30 22:46:16 24 4
gpt4 key购买 nike

我有一个与 this questionthis answer 相关的问题,但它们并没有完全解决我的问题。我正在使用 vue 和 apexcharts,我想从事件中返回一个值或更新一个变量。是否可以返回某些东西而不是在控制台中打印它?

像这样:

    events: {
dataPointSelection: function (event, chartContext, config) {
this.active = this.series[config.seriesIndex];
}
}

我面临的问题是“this”引用了整个 vue 组件,因此找不到“series”和“active”。

这是当我点击一个点数据时给我“TypeError: this.series is undefined”的代码。我从父组件获取的系列数据如下所示:

[{"name":"S-1","data":[[2.65,100], [6.67,100]]}, {"name":"S-2","data":[[0,50],[2.65,50]]}]
<script>
import VueApexCharts from 'vue-apexcharts';

export default {
name: "myGraph",
components: {
apexchart: VueApexCharts,
},
props: {
series: {}
},
data: () => ({
active: undefined,
chartOptions: {
chart: {
width: '100%',
animations: {
enabled: false
},
events: {
dataPointSelection: function (event, chartContext, config) {
this.active = this.series[config.seriesIndex];
}
}
},
tooltip: {
intersect: true,
shared: false
},
markers: {size: 1},
}
}),
}
}
</script>

想法是,在 dataPointSelection 上,它应该激活该系列,以便稍后访问将存储在该对象中的其他信息。

最佳答案

最简单的方法是直接在组件中绑定(bind)事件

<apexchart type="bar" @dataPointSelection="dataPointSelectionHandler"></apexchart>

methods: {
dataPointSelectionHandler(e, chartContext, config) {
console.log(chartContext, config)
}
}

另一种方法是在图表配置中使用 ES6 箭头函数

computed: {
chartOptions: function() {
return {
chart: {
events: {
dataPointSelection: (e, chart, opts) => {
// you can call Vue methods now as "this" will point to the Vue instance when you use ES6 arrow function
this.VueDemoMethod();
}
}
},
}
}
}

关于vue.js - Apexcharts 中 dataPointSelection 事件的返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55380444/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com