mirror of https://github.com/masayuki0812/c3.git
Quite good looking graph derived from d3.js
http://c3js.org
14 lines
284 B
14 lines
284 B
7 years ago
|
var chart = c3.generate({
|
||
|
data: {
|
||
|
rows: [
|
||
|
['data1', 'data2', 'data3'],
|
||
|
[90, 120, 300],
|
||
|
[40, 160, 240],
|
||
|
[50, 200, 290],
|
||
|
[120, 160, 230],
|
||
|
[80, 130, 300],
|
||
|
[90, 220, 320],
|
||
|
]
|
||
|
}
|
||
|
});
|