0
同様の質問がhereと記載されていますが、私の問題は解決しません。 var dates = ["2015-03-07", "2015-03-09"]
.toString()を使用するとc3の解析に失敗しました
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'
}
}
}
に.toString()
方法を使用するときに些細なc3
スクリプトは、データをロードするために失敗した私はここで何かが足りないのですか?
Failed to parse x '2015-03-07,2015-03-09' to Date object