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.
134 lines
3.2 KiB
134 lines
3.2 KiB
11 years ago
|
<html>
|
||
|
<head>
|
||
|
<link href="/css/c3.css" rel="stylesheet" type="text/css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="chart"></div>
|
||
|
|
||
|
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
|
||
|
<script src="/js/c3.js"></script>
|
||
|
<script>
|
||
|
var chart = c3.generate({
|
||
|
data: {
|
||
|
columns: [
|
||
11 years ago
|
[ 'data', 91.4 ]
|
||
11 years ago
|
],
|
||
|
type: 'gauge'
|
||
|
},
|
||
|
gauge: {
|
||
|
label: {
|
||
11 years ago
|
// format: function(value, ratio) {
|
||
|
// return value;
|
||
|
// },
|
||
|
// show: false // to turn off the min/max labels.
|
||
11 years ago
|
},
|
||
11 years ago
|
// min: 0, // 0 is default, //can handle negative min e.g. vacuum / voltage / current flow / rate of change
|
||
|
// max: 100, // 100 is default
|
||
|
// units: ' %',
|
||
|
// width: 39 // for adjusting arc thickness
|
||
11 years ago
|
},
|
||
|
color: {
|
||
|
pattern: ['#FF0000', '#F6C600', '#60B044'], // the three color levels for the percentage values.
|
||
11 years ago
|
threshold: {
|
||
|
// unit: 'value', // percentage is default
|
||
|
// max: 200, // 100 is default
|
||
|
values: [30, 60, 90] // alternate first value is 'value'
|
||
|
}
|
||
11 years ago
|
}
|
||
|
});
|
||
|
|
||
|
var cycleDemo = function () {
|
||
11 years ago
|
|
||
11 years ago
|
setTimeout(function () {
|
||
11 years ago
|
d3.select('#chart .c3-chart-arcs-background')
|
||
|
.transition()
|
||
|
.style('fill', '#333');
|
||
11 years ago
|
}, 1000);
|
||
11 years ago
|
|
||
|
setTimeout(function () {
|
||
|
chart.load({
|
||
11 years ago
|
columns: [[ 'data', 10 ]]
|
||
11 years ago
|
});
|
||
11 years ago
|
}, 2000);
|
||
11 years ago
|
|
||
|
setTimeout(function () {
|
||
|
chart.load({
|
||
11 years ago
|
columns: [[ 'data', 50 ]]
|
||
11 years ago
|
});
|
||
11 years ago
|
}, 3000);
|
||
11 years ago
|
|
||
|
setTimeout(function () {
|
||
|
chart.load({
|
||
11 years ago
|
columns: [[ 'data', 91.4 ]]
|
||
11 years ago
|
});
|
||
11 years ago
|
}, 4000);
|
||
11 years ago
|
|
||
11 years ago
|
setTimeout(function () {
|
||
|
d3.select('#chart .c3-chart-arcs-background')
|
||
|
.transition()
|
||
|
.style('fill', '#e0e0e0');
|
||
|
}, 5000);
|
||
11 years ago
|
|
||
|
setTimeout(function () {
|
||
|
chart.load({
|
||
11 years ago
|
columns: [[ 'data', 0 ]]
|
||
11 years ago
|
});
|
||
11 years ago
|
}, 6000);
|
||
11 years ago
|
|
||
|
setTimeout(function () {
|
||
|
chart.load({
|
||
11 years ago
|
columns: [[ 'data', 50 ]]
|
||
11 years ago
|
});
|
||
11 years ago
|
}, 7000);
|
||
11 years ago
|
|
||
|
setTimeout(function () {
|
||
|
chart.load({
|
||
11 years ago
|
columns: [[ 'data', 91.4 ]]
|
||
11 years ago
|
});
|
||
11 years ago
|
}, 8000);
|
||
11 years ago
|
|
||
|
setTimeout(function () {
|
||
|
chart.load({
|
||
11 years ago
|
columns: [[ 'data', 0 ]]
|
||
11 years ago
|
});
|
||
11 years ago
|
}, 9000);
|
||
11 years ago
|
|
||
|
setTimeout(function () {
|
||
|
chart.load({
|
||
11 years ago
|
columns: [[ 'data', 50 ]]
|
||
11 years ago
|
});
|
||
11 years ago
|
}, 10000);
|
||
11 years ago
|
|
||
|
setTimeout(function () {
|
||
|
chart.load({
|
||
11 years ago
|
columns: [[ 'data', 91.4 ]]
|
||
11 years ago
|
});
|
||
11 years ago
|
}, 11000);
|
||
11 years ago
|
|
||
|
setTimeout(function () {
|
||
|
chart.load({
|
||
11 years ago
|
columns: [[ 'data', 0 ]]
|
||
11 years ago
|
});
|
||
11 years ago
|
}, 12000);
|
||
11 years ago
|
|
||
|
setTimeout(function () {
|
||
|
chart.load({
|
||
11 years ago
|
columns: [[ 'data', 50 ]]
|
||
11 years ago
|
});
|
||
11 years ago
|
}, 13000);
|
||
11 years ago
|
|
||
|
setTimeout(function () {
|
||
|
chart.load({
|
||
11 years ago
|
columns: [[ 'data', 91.4 ]]
|
||
11 years ago
|
});
|
||
11 years ago
|
}, 14000);
|
||
11 years ago
|
|
||
11 years ago
|
}
|
||
|
|
||
|
cycleDemo();
|
||
|
|
||
11 years ago
|
// setInterval(cycleDemo, 30000);
|
||
11 years ago
|
</script>
|
||
|
</body>
|
||
|
</html>
|