0
我有一個JSON數組,並且想用C3.js製作一個圖表。我的例子只給我一行。我想爲每個用戶顯示一行。我怎樣才能做到這一點?c3.js與JSON,分割線條
這裏是我的代碼:
this.chart = c3.generate({
data: {
json: [
{
ExamID: 'Exam1',
result: 80,
user:"user1"
},
{
ExamID: 'Exam2',
result: 90,
user:"user1"
},
{
ExamID: 'Exam1',
result: 70,
user:"user2"
},
{
ExamID: 'Exam2',
result: 60,
user:"user2"
}
],
keys: {
x: 'ExamID',
value: ['result'],
},
},
axis: {
x: {
type: 'category',
}
}
});
非常感謝@ SSC-hrep3 –
@BahgatMashaly你可以接受的答案嗎? –
我已經接受了,很多很多再次感謝,對不起我的可憐的英語 –