gpt4 book ai didi

javascript - c3 使用 .toString() 时解析失败

转载 作者:行者123 更新时间:2023-12-03 05:56:11 24 4
gpt4 key购买 nike

有提到类似的问题here但是,它并不能解决我的问题。在 vardates = ["2015-03-07", "2015-03-"上使用 .toString() 方法时,一个简单的 c3 脚本无法加载数据09"]

data: {
x: 'x',
xFormat: '%Y-%m-%d', // 'xFormat' can be used as custom format of 'x'
columns: [
['x', dates.toString()],
['data1', 30, 200, 100, 400, 150, 250],
['data2', 130, 340, 200, 500, 250, 350]
]
},
axis: {
x: {
type: 'timeseries',
tick: {
format: '%Y-%m-%d'
}
}
}

我在这里遗漏了什么吗?错误如下

Failed to parse x '2015-03-07,2015-03-09' to Date object

最佳答案

.toString 将数组转换为一个字符串,请在 columns 属性中使用它

['x'].concat(dates),

关于javascript - c3 使用 .toString() 时解析失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39922026/

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