gpt4 book ai didi

javascript - VueJs highstock 无法正确绘制图形

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

这是我的 VueJS 代码,我使用这个库 https://www.npmjs.com/package/highcharts-vue所以我不知道如何在绘制图形之前获取数据并将其设置为系列。或者,如果这不可能,我该如何正确重绘图形?因为现在我设置了一些默认数据,然后从页面获取数据并重绘图形,但是当它完成并且我看到我的图形时,滚动条转到左侧并且范围非常小。那么如何在不改变滚动条和范围选择器的情况下设置选项呢?

<template>
<highcharts :constructor-type="'stockChart'" :options="options" :updateArgs="[true, false]" ref="linerchart"></highcharts>
</template>

<script>
import {Chart} from 'highcharts-vue'
import Highcharts from 'highcharts'
import stockInit from 'highcharts/modules/stock'
stockInit(Highcharts)
export default {
data: () => ({
obj: [],
names: ['CAFF'],
options: {
credits: { enabled: false },
rangeSelector: {
selected: 1,
inputEnabled: false,
buttonTheme: {
visibility: 'visible'
}
},
yAxis: {
labels: {
formatter: function () {
return (this.value > 0 ? ' + ' : '') + this.value + '%';
}
},
plotLines: [{
value: 0,
width: 2,
color: 'silver'
}]
},
plotOptions: {
series: {
compare: 'percent',
showCheckbox: false,
events: {
checkboxClick: function (event) {
if (event.checked) {
this.show();
} else {
this.hide();
}
}
}
}
},
tooltip: {
pointFormat: '<span style="color:{series.color}">{series.name}</span>: <b>{point.y}</b> USD<br/>',
split: true
},
series: [{
name: "CAFF",
data: [1,2,3,4,5,6]
}]
}
}),
methods: {
linerGraph() {
var that = this;
this.names.forEach(function(name, i){
axios.get('/test/account/CAFF')
.then(response => {
console.log(response.data)
that.obj.push({name: name, data: response.data});
});
});
this.options.series = that.obj
},
},
components: {
highcharts: Chart
},
mounted() {
console.log(this.$refs.linerchart)
this.linerGraph();
}
}
</script>

最佳答案

您应该使用其他 VueJS 生命周期 Hook 点来运行 axios 请求,因为您正在尝试在组件已经 mounted() 时下载它,所以请尝试在 Hook 点之前使用其中一个 Hook 点,例如 created()。这是来自 Vue General Documentation 的生命周期图:

enter image description here

关于javascript - VueJs highstock 无法正确绘制图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51550296/

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