admin管理员组文章数量:1417411
I am trying to use c3.js timeseries line chart (URL : .html). The only difference being that I am using the CDN link to the js files instead of downloading them. However I keep getting the following error
Chrome Uncaught Error: x is not defined for id = "date".
Firefox Error: x is not defined for id = "date".
throw new Error('x is not defined for id = "' + id + '".'); | ------------+
The html file is given below
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
<link rel="stylesheet" type="text/css" href=".4.10/c3.css"/>
<script src=".v3.min.js"></script>
<script src=".4.10/c3.js"></script>
<script>
var dates = ['20130101', '20130102', '20130103', '20130104', '20130105', '20130106'];
var sample = [30, 200, 100, 400, 150, 250];
var chart = c3.generate({
bindto: '#chart',
data: {
x:'Dates',
x_format:'%Y%m%d',
columns: [
//['Dates'].concat(dates),
//['Sample'].concat(sample)
['date', '20130101', '20130102', '20130103', '20130104', '20130105', '20130106'],
['sample', 30, 200, 100, 400, 150, 250]
]
},
axis: {
x: {
type : 'timeseries'
}
}
});
</script>
</head>
<body>
<div id="chart"></div>
</body>
</html>
I am not sure why I am getting the date related errors. I tried using actual data values in the C3 arguments as well as passing the data as variables. Any help is highly appreciated
I am trying to use c3.js timeseries line chart (URL : http://c3js/samples/timeseries.html). The only difference being that I am using the CDN link to the js files instead of downloading them. However I keep getting the following error
Chrome Uncaught Error: x is not defined for id = "date".
Firefox Error: x is not defined for id = "date".
throw new Error('x is not defined for id = "' + id + '".'); | ------------+
The html file is given below
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
<link rel="stylesheet" type="text/css" href="http://cdnjs.cloudflare./ajax/libs/c3/0.4.10/c3.css"/>
<script src="http://d3js/d3.v3.min.js"></script>
<script src="http://cdnjs.cloudflare./ajax/libs/c3/0.4.10/c3.js"></script>
<script>
var dates = ['20130101', '20130102', '20130103', '20130104', '20130105', '20130106'];
var sample = [30, 200, 100, 400, 150, 250];
var chart = c3.generate({
bindto: '#chart',
data: {
x:'Dates',
x_format:'%Y%m%d',
columns: [
//['Dates'].concat(dates),
//['Sample'].concat(sample)
['date', '20130101', '20130102', '20130103', '20130104', '20130105', '20130106'],
['sample', 30, 200, 100, 400, 150, 250]
]
},
axis: {
x: {
type : 'timeseries'
}
}
});
</script>
</head>
<body>
<div id="chart"></div>
</body>
</html>
I am not sure why I am getting the date related errors. I tried using actual data values in the C3 arguments as well as passing the data as variables. Any help is highly appreciated
Share Improve this question asked May 20, 2015 at 1:17 Info2scsInfo2scs 591 silver badge9 bronze badges1 Answer
Reset to default 5Your dates
array needs a first value with the name/id of the 'set', such as:
var dates = ['Dates', '20130101', '20130102', '20130103', '20130104', '20130105', '20130106'];
The data
object's x
property needs to match this. In the code above you've got differing values: Dates
and date
.
data: { x:'Dates',
You were closer with the concat
attempt.
See this link: http://jsfiddle/jrdsxvys/16/
本文标签: javascriptC3 js line chart getting error for dateStack Overflow
版权声明:本文标题:javascript - C3 js line chart getting error for date - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745265887a2650598.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论