0
有沒有選項可以聚合C3圖表中的數據?當JSON包含具有相同類別的多個數據元素時,數據在圖表中被繪製爲多個點,因爲它應該彙總並顯示爲圖表中的單個點。 附上C3圖表和預期圖表格式。 在該示例中:「名稱1」在300處顯示單點爲上載,其中作爲離子C3它在200處顯示一個點,而在另一個點顯示爲100。c3js中的數據聚合
代碼中使用:
var chart = c3.generate({
bindto:'#png-container',
data: {
json: [
{name: 'name1', upload: 200, download: 200, total: 400},
{name: 'name1', upload: 100, download: 300, total: 400},
{name: 'name2', upload: 300, download: 200, total: 500},
{name: 'name3', upload: 400, download: 100, total: 500},
],
keys: {
x: 'name', // it's possible to specify 'x' when category axis
value: ['upload', 'download'],
},
groups: [
['name']
]
},
axis: {
x: {
type: 'category'
}
}
});
預期輸出: