mirror of https://github.com/masayuki0812/c3.git
Quite good looking graph derived from d3.js
http://c3js.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.3 KiB
49 lines
1.3 KiB
<html> |
|
<head> |
|
<link rel="stylesheet" type="text/css" href="/css/c3.css"> |
|
</head> |
|
<body> |
|
<div id="chart"></div> |
|
|
|
<script src="http://d3js.org/d3.v3.js" charset="utf-8"></script> |
|
<script src="/js/c3.js"></script> |
|
<script> |
|
var chart = c3.generate({ |
|
bindto: '#chart', |
|
data: { |
|
x: 'date', |
|
xFormat : '%Y%m%d', |
|
columns: [ |
|
['date', '20130101', '20130102', '20130103', '20130104', '20130105', '20130106', '20130107', '20130108', '20130109'], |
|
['min', 10, 10, 30, 10, 55, 10, 55, 30, 10,], |
|
['start', 30, 30, 30, 55, 55, 55, 55, 30, 80], |
|
['end', 80, 80, 80, 55, 55, 55, 55, 80, 30], |
|
['max', 110, 80, 110, 110, 55, 55, 110, 80, 110] |
|
], |
|
type: 'candle-stick' |
|
}, |
|
candlestick: { |
|
data: { |
|
min: 'min', |
|
max: 'max', |
|
start: 'start', |
|
end: 'end' |
|
}, |
|
color: { |
|
inc: 'yellow', |
|
dec: 'orange', |
|
neutral: 'green' |
|
} |
|
}, |
|
axis: { |
|
x: { |
|
type: 'timeseries', |
|
tick: { |
|
format: '%Y-%m-%d' |
|
} |
|
} |
|
} |
|
}); |
|
</script> |
|
</body> |
|
</html>
|
|
|