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.
69 lines
1.5 KiB
69 lines
1.5 KiB
1 year ago
|
<html>
|
||
|
<head>
|
||
|
<link href="../css/c3.css" rel="stylesheet" type="text/css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="chart1"></div>
|
||
|
<div id="chart2"></div>
|
||
|
<div id="chart3"></div>
|
||
|
|
||
|
<script src="https://d3js.org/d3.v5.min.js" charset="utf-8"></script>
|
||
|
<script src="../js/c3.js"></script>
|
||
|
<script>
|
||
|
var chart1 = c3.generate({
|
||
|
bindto: '#chart1',
|
||
|
data: {
|
||
|
columns: [
|
||
|
['data', 80.0]
|
||
|
],
|
||
|
type: 'gauge',
|
||
|
},
|
||
|
gauge: {
|
||
|
label: {
|
||
|
show: false
|
||
|
},
|
||
|
fullCircle: true,
|
||
|
min: 0,
|
||
|
max: 100
|
||
|
}
|
||
|
});
|
||
|
var chart2 = c3.generate({
|
||
|
bindto: '#chart2',
|
||
|
data: {
|
||
|
columns: [
|
||
|
['data', 50.0],
|
||
|
],
|
||
|
type: 'gauge',
|
||
|
},
|
||
|
gauge: {
|
||
|
label: {
|
||
|
show: false
|
||
|
},
|
||
|
fullCircle: true,
|
||
|
min: -100,
|
||
|
max: 100
|
||
|
}
|
||
|
});
|
||
|
var chart3 = c3.generate({
|
||
|
bindto: '#chart3',
|
||
|
data: {
|
||
|
columns: [
|
||
|
['data', -50.0],
|
||
|
['data2', 0.0],
|
||
|
['data3', 50.0],
|
||
|
],
|
||
|
type: 'gauge',
|
||
|
},
|
||
|
gauge: {
|
||
|
label: {
|
||
|
show: false
|
||
|
},
|
||
|
fullCircle: true,
|
||
|
min: -100,
|
||
|
max: 100
|
||
|
}
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|