gpt4 book ai didi

vue.js - Vue ApexCharts 动态更新数据系列

转载 作者:行者123 更新时间:2023-12-03 22:47:47 27 4
gpt4 key购买 nike

如何更新 ApexCharts 的系列数据
我使用 ApexCharts 创建了以下 Vue 组件.
该组件从这些组件所在的父级更新。
更新的值是通过 Prop 进来的。

<template>
<div>
<apexchart type="line" width="1000px" :options="options" :series="series"></apexchart>
</div>
</template>

<script>
import Vue from 'vue';
import VueApexCharts from 'vue-apexcharts';

Vue.use(VueApexCharts);
Vue.component('apexchart', VueApexCharts);

export default {
name: 'EnergyConsumption',
props: {
channel1: Number,
channel2: Number,
},
data() {
return {
options: {
chart: {
id: 'vuechart-example',
},
xaxis: {
categories: ['Channel 1', 'Channel 2'],
},
},
series: [
{
name: 'series-1',
data: [this.channel1, this.channel2],
},
],
};
},
methods: {
updateSeries() {
this.series[0].data = [this.channel1, this.channel2];
},
},
watch: {
channel1: function (_channel1) {
this.updateSeries();
// this.series[0].data[0] = _channel1;
},
},
};
</script>
使用 Vue DevTools,我可以看到 ApexCharts 中的数据正在发生变化。组件,但 View 未更新。
如果我看一下 ApexCharts文档,我看到有一种更新系列的方法
updateSeries (newSeries, animate)
但我需要一个实例来调用 updateSeries从。如果我使用模板机制,我就无法引用该模块。
解决此问题的最佳方法是什么?

最佳答案

您需要使用 ref用于更新系列。

<template>
<apexchart
ref="realtimeChart"
type="line"
height="200"
:options="chartOptions"
:series="series"
/>
</template>

<script>
export default {
data() {
return {
series: [{
name: 'Desktops',
data: [10, 41, 35, 51, 49, 62, 69, 91, 99],
}],
chartOptions: {
colors: ['#FCCF31', '#17ead9', '#f02fc2'],
chart: {
height: 350,
},
grid: {
show: true,
strokeDashArray: 0,
xaxis: {
lines: {
show: true,
},
},
},
stroke: {
curve: 'straight',
width: 5,
},
// grid: {
// padding: {
// left: 0,
// right: 0,
// },
// },
dropShadow: {
enabled: true,
opacity: 0.3,
blur: 5,
left: -7,
top: 22,
},
dataLabels: {
enabled: false,
},
title: {
text: 'Line',
align: 'left',
style: {
color: '#FFF',
},
},
xaxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep'],
labels: {
style: {
colors: '#fff',
},
},
},
yaxis: {
labels: {
style: {
color: '#fff',
},
},
},
},
};
},
mounted() {
this.setDataLineChart();
},
methods: {
getRandomArbitrary(min, max) {
return Math.floor(Math.random() * 99);
},
setDataLineChart() {
setInterval(() => {
this.series[0].data.splice(0, 1);
this.series[0].data.push(this.getRandomArbitrary(0, 99));
this.updateSeriesLine();
}, 3000);
},
updateSeriesLine() {
this.$refs.realtimeChart.updateSeries([{
data: this.series[0].data,
}], false, true);
},
},
};
</script>

关于vue.js - Vue ApexCharts 动态更新数据系列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59734885/

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