gpt4 book ai didi

javascript - 轻量级图表未捕获错误 : Value is null

转载 作者:行者123 更新时间:2023-12-05 00:44:52 26 4
gpt4 key购买 nike

轻量级图表版本:3.1.3

我正在将您的图表用于 Vue 项目中的加密货币交易应用程序但无论我得到什么下面的错误都是示例代码

没有重复或空数据。


import {createChart} from "lightweight-charts";
export default {
data() {
return {
chartProperties: {
width: 700,
height: 300,
timeScale: {
timeVisible: true,
secondsVisible: false
},
layout: {
//backgroundColor: '#262C49', //Dark Theme
//textColor: '#80859E',
fontSize: 12,
fontFamily: 'irsans ,Calibri'
}
},
chartData: [],
candleSeries: null,
}
}
mounted() {

let cdata = [
{
close: 22750.76
high: 22759.53
low: 22750.25
open: 22752.8
time: 1608635340
},
....
];

this.chartElement = document.getElementById('chart');
this.chartProperties.width = this.chartElement.offsetWidth;
this.chart = createChart(this.chartElement, this.chartProperties);
this.candleSeries = this.chart.addCandlestickSeries();

this.candleSeries.setData(cdata);

实际行为:

图表是在没有烛台的情况下绘制的

enter image description here

以及Uncaught Error的重复错误:Value is null

enter image description here

jsfiddle

最佳答案

如果您收到此错误 99% 可能是您的数据源存在三个问题之一

  1. 部分数据为空
  2. 时间戳中的数据存在重复
  3. 我的问题:数据应该按时间按 ASC 顺序排列,而不是按描述。

关于javascript - 轻量级图表未捕获错误 : Value is null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65408588/

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