//以这段代码为例
在这里,我在组中指定了 yvalue[0],yvalue[1]。但我需要一个通用设计,我不知道我必须创建的组数(即段数)这取决于 json数据。
考虑这个例子,我有总计,总计 1,因此我只有 2 个值。但是如果在 json 中指定了第三个变量说总计 2,我应该在我的条形图中有一个段,依此类推。这必须在不改变的情况下完成每次添加字段时的组。有什么方法可以实现吗?
谢谢
var datajson = [ {
country : "china",
total : 20,
total1 : 10
}, {
country : "India",
total : 40,
total1 : 20
}, {
country : "aus",
total : 10,
total1 : 30
}, {
country : "nxz",
total : 50,
total1 : 40
}
];
var xvalue;
var yvalue = [];
var i = 0;
var obj = datajson[0]
for ( var key in obj) {
if (xvalue === undefined)
xvalue = key;
else {
yvalue[i] = key;
i++;
}
}
var chart = c3.generate({
bindto : '#chart',
data : {
json : datajson,
type : 'bar',
keys : {
x : xvalue, // it's possible to specify 'x' when category axis
value : [yvalue[0],yvalue[1]],
},
groups : [ [yvalue[0],yvalue[1]] ]
},
bar : {
width : {
ratio : 0.3
// this makes bar width 50% of length between ticks
}
},
axis : {
x : {
type : 'category'
},
}
});