有一个类似的问题提到here,但是,它并没有解决我的问题。在c3
上使用.toString()
方法时,一个简单的var dates = ["2015-03-07", "2015-03-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
答案 0 :(得分:1)
.toString
将数组转换为一个字符串,而不是在columns属性中使用
['x'].concat(dates),