mirror of https://github.com/masayuki0812/c3.git
Masayuki Tanaka
11 years ago
3 changed files with 63 additions and 2 deletions
File diff suppressed because one or more lines are too long
@ -0,0 +1,61 @@
|
||||
<html> |
||||
<head> |
||||
<link rel="stylesheet" type="text/css" href="/css/c3.css"> |
||||
</head> |
||||
<body> |
||||
<div id="chart1"></div> |
||||
<div id="chart2"></div> |
||||
<div id="chart3"></div> |
||||
<div id="chart4"></div> |
||||
|
||||
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> |
||||
<script src="/js/c3.js"></script> |
||||
<script> |
||||
|
||||
var columns = []; |
||||
for (var i = 0; i < 30; i++ ) { |
||||
columns[i] = ['datahogehogeohgeohoge' + i, 10 * i, 20 * i]; |
||||
} |
||||
|
||||
c3.generate({ |
||||
bindto: '#chart1', |
||||
data: { |
||||
columns: columns, |
||||
}, |
||||
}); |
||||
|
||||
c3.generate({ |
||||
bindto: '#chart2', |
||||
data: { |
||||
columns: columns, |
||||
}, |
||||
legend: { |
||||
position: 'right' |
||||
}, |
||||
}); |
||||
|
||||
c3.generate({ |
||||
bindto: '#chart3', |
||||
data: { |
||||
columns: columns, |
||||
}, |
||||
axis: { |
||||
rotated: true, |
||||
}, |
||||
}); |
||||
|
||||
c3.generate({ |
||||
bindto: '#chart4', |
||||
data: { |
||||
columns: columns, |
||||
}, |
||||
legend: { |
||||
position: 'right' |
||||
}, |
||||
axis: { |
||||
rotated: true, |
||||
}, |
||||
}); |
||||
</script> |
||||
</body> |
||||
</html> |
Loading…
Reference in new issue