조민지

그래프 페이지 디자인 완료

205 KB

204 KB

<!DOCTYPE html>
<html>
<head>
<head>
<!-- font -->
<link href="https://fonts.googleapis.com/css?family=Nanum+Brush+Script&amp;subset=korean" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Yeon+Sung&amp;subset=korean" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Highcharts Example</title>
<style type="text/css"></style>
</head>
<body>
<style type="text/css">
body {
/* background: linear-gradient( to bottom, #65799B, rgb(38, 14, 41) ); */
/* background-color:#65799B; */
background-image: url("2.jpg");
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<script src="../code/highcharts.js"></script>
<script src="../code/modules/exporting.js"></script>
<script src="../code/modules/export-data.js"></script>
<div
id="container1"
style="width:1260px; height: 400px; margin: 0 auto"
></div>
<div id="container1" style="width:1260px; height: 400px; margin: 0 auto;"></div>
<div style="width:1275px; margin:0 auto;">
<div style="display: inline-block;">
<div
id="container2"
style="width:400px; height: 300px; padding:0; margin-left:0px;margin-right: 30px;"
></div>
<div id="container2" style="width:400px; height: 300px; padding:0; margin-left:0px;margin-right: 30px;"></div>
</div>
<div style="display: inline-block;">
<div
id="container3"
style="width:400px; height: 300px; padding:0; margin-left:0px;margin-right: 30px;"
></div>
<div id="container3" style="width:400px; height: 300px; padding:0; margin-left:0px;margin-right: 30px;"></div>
</div>
<div style="display: inline-block;">
<div
id="container4"
style="width:400px; height: 300px; padding:0; margin-left:0px;"
></div>
<div id="container4" style="width:400px; height: 300px; padding:0; margin-left:0px;"></div>
</div>
</div>
<!--첫번째 그래프-->
<!-- 첫번째 그래프 -->
<script type="text/javascript">
Highcharts.chart("container1", {
var chart1 = Highcharts.chart("container1", {
chart: {
type: "areaspline",
type: "spline",
animation: Highcharts.svg, // don't animate in old IE
marginRight: 10,
events: {
load: function() {
load: function () {
// set up the updating of the chart each second
var series = this.series[0];
setInterval(function() {
setInterval(function () {
var x = new Date().getTime(), // 현재 시간
y = 0.7; //여기에 새로 넣을 값
series.addPoint([x, y], true, true);
y = Math.random(); //여기에 새로 넣을 값
series.addPoint({x:x,y:y,color:"#FFE08C"}, true, true);
}, 1000); //1000=1초 -> 1분=60000
}
}
},
backgroundColor: "rgba(255, 255, 255, 0.0)"
},
time: {
......@@ -64,35 +68,56 @@
},
title: {
text: "실시간 사망률"
text: "실시간 사망률",
style: {
color: "#FFFFFF",
fontWeight: "bold",
fontFamily: 'Yeon Sung',
fontSize:'32px'
}
},
xAxis: {
type: "datetime",
tickPixelInterval: 150
tickPixelInterval: 150,
labels: {
style: {
color: "white"
}
}
},
yAxis: {
title: {
text: "Value"
text: "Value",
style: {
color: "white"
}
},
plotLines: [
{
value: 0,
width: 1,
color: "#808080"
}
]
],
labels: {
style: {
color: "white"
}
}
},
tooltip: {
headerFormat: "<b>{series.name}</b><br/>",
pointFormat: "{point.x:%Y-%m-%d %H:%M:%S}<br/>{point.y:.2f}"
pointFormat: "{point.x:%Y년%m월%d일 %H시%M분}<br/>의 사망률 : {point.y:.2f}%"
},
legend: {
//enabled: false
layout: "vertical",
align: "left",
verticalAlign: "top",
x: 120,
y: 70,
x: 100,
y: 50,
floating: true,
borderWidth: 1,
backgroundColor:
......@@ -102,10 +127,19 @@
exporting: {
enabled: false
},
plotOptions: {
series: {
marker: {
radius: 6
}
}
},
series: [
{
name: "사망률",
data: (function() {
data: (function () {
// generate an array of random data
var data = [],
time = new Date().getTime(),
......@@ -114,17 +148,20 @@
for (i = -9; i <= 0; i += 1) {
data.push({
x: time + i * 1000,
y: 0
y: 0,
});
}
return data;
})()
})(),
color: "#FFFFFF"
}
]
});
</script>
<!--두번째 그래프-->
<!-- 두번째 그래프 -->
<script type="text/javascript">
Highcharts.chart("container2", {
chart: {
......@@ -132,16 +169,18 @@
animation: Highcharts.svg, // don't animate in old IE
marginRight: 10,
events: {
load: function() {
load: function () {
// set up the updating of the chart each second
var series = this.series[0];
setInterval(function() {
setInterval(function () {
var x = new Date().getTime(), // 현재 시간
y = Math.random(); //
series.addPoint([x, y], true, true);
}, 3000); //1000=1초
}
}
},
backgroundColor: "rgba(255, 255, 255, 0.0)"
},
time: {
......@@ -149,15 +188,30 @@
},
title: {
text: "기온"
text: "기온",
style: {
color: "#FFFFFF",
fontWeight: "bold",
fontFamily: 'Yeon Sung',
fontSize:'25px'
}
},
xAxis: {
type: "datetime",
tickPixelInterval: 150
tickPixelInterval: 150,
labels: {
style: {
color: "white"
}
}
},
yAxis: {
title: {
text: "Value"
text: "Value",
style: {
color: "white"
}
},
plotLines: [
{
......@@ -165,19 +219,25 @@
width: 1,
color: "#808080"
}
]
],
labels: {
style: {
color: "white"
}
}
},
tooltip: {
headerFormat: "<b>{series.name}</b><br/>",
pointFormat: "{point.x:%Y-%m-%d %H:%M:%S}<br/>{point.y:.2f}"
pointFormat: "{point.x:%Y년%m월%d일 %H시%M분}<br/>의 사망률 : {point.y:.2f}%"
},
legend: {
//enabled: false
layout: "vertical",
align: "left",
verticalAlign: "top",
x: 120,
y: 70,
x: 100,
y: 50,
floating: true,
borderWidth: 1,
backgroundColor:
......@@ -190,7 +250,7 @@
series: [
{
name: "기온",
data: (function() {
data: (function () {
// generate an array of random data
var data = [],
time = new Date().getTime(),
......@@ -203,13 +263,15 @@
});
}
return data;
})()
})(),
color: "#FFE08C"
}
]
});
</script>
<!--세번째 그래프-->
<!-- 세번째 그래프 -->
<script type="text/javascript">
Highcharts.chart("container3", {
chart: {
......@@ -217,16 +279,17 @@
animation: Highcharts.svg, // don't animate in old IE
marginRight: 10,
events: {
load: function() {
load: function () {
// set up the updating of the chart each second
var series = this.series[0];
setInterval(function() {
setInterval(function () {
var x = new Date().getTime(), // 현재 시간
y = Math.random(); //
series.addPoint([x, y], true, true);
}, 3000); //1000=1초
}
}
},
backgroundColor: "rgba(255, 255, 255, 0.0)"
},
time: {
......@@ -234,15 +297,29 @@
},
title: {
text: "풍속"
text: "풍속",
style: {
color: "#FFFFFF",
fontWeight: "bold",
fontFamily: 'Yeon Sung',
fontSize:'25px'
}
},
xAxis: {
type: "datetime",
tickPixelInterval: 150
tickPixelInterval: 150,
labels: {
style: {
color: "white"
}
}
},
yAxis: {
title: {
text: "Value"
text: "Value",
style: {
color: "white"
}
},
plotLines: [
{
......@@ -250,19 +327,25 @@
width: 1,
color: "#808080"
}
]
],
labels: {
style: {
color: "white"
}
}
},
tooltip: {
headerFormat: "<b>{series.name}</b><br/>",
pointFormat: "{point.x:%Y-%m-%d %H:%M:%S}<br/>{point.y:.2f}"
pointFormat: "{point.x:%Y년%m월%d일 %H시%M분}<br/>의 사망률 : {point.y:.2f}%"
},
legend: {
//enabled: false
layout: "vertical",
align: "left",
verticalAlign: "top",
x: 120,
y: 70,
x: 100,
y: 50,
floating: true,
borderWidth: 1,
backgroundColor:
......@@ -275,7 +358,7 @@
series: [
{
name: "풍속",
data: (function() {
data: (function () {
// generate an array of random data
var data = [],
time = new Date().getTime(),
......@@ -288,13 +371,15 @@
});
}
return data;
})()
})(),
color: "#FFE08C"
}
]
});
</script>
<!--네번째 그래프-->
<!-- 네번째 그래프 -->
<script type="text/javascript">
Highcharts.chart("container4", {
chart: {
......@@ -302,16 +387,17 @@
animation: Highcharts.svg, // don't animate in old IE
marginRight: 10,
events: {
load: function() {
load: function () {
// set up the updating of the chart each second
var series = this.series[0];
setInterval(function() {
setInterval(function () {
var x = new Date().getTime(), // 현재 시간
y = Math.random(); //
series.addPoint([x, y], true, true);
}, 3000); //1000=1초
}
}
},
backgroundColor: "rgba(255, 255, 255, 0.0)"
},
time: {
......@@ -319,15 +405,29 @@
},
title: {
text: "강수량"
text: "강수량",
style: {
color: "#FFFFFF",
fontWeight: "bold",
fontFamily: 'Yeon Sung',
fontSize:'25px'
}
},
xAxis: {
type: "datetime",
tickPixelInterval: 150
tickPixelInterval: 150,
labels: {
style: {
color: "white"
}
}
},
yAxis: {
title: {
text: "Value"
text: "Value",
style: {
color: "white"
}
},
plotLines: [
{
......@@ -335,19 +435,25 @@
width: 1,
color: "#808080"
}
]
],
labels: {
style: {
color: "white"
}
}
},
tooltip: {
headerFormat: "<b>{series.name}</b><br/>",
pointFormat: "{point.x:%Y-%m-%d %H:%M:%S}<br/>{point.y:.2f}"
pointFormat: "{point.x:%Y년%m월%d일 %H시%M분}<br/>의 사망률 : {point.y:.2f}%"
},
legend: {
//enabled: false
layout: "vertical",
align: "left",
verticalAlign: "top",
x: 120,
y: 70,
x: 100,
y: 50,
floating: true,
borderWidth: 1,
backgroundColor:
......@@ -360,7 +466,7 @@
series: [
{
name: "강수량",
data: (function() {
data: (function () {
// generate an array of random data
var data = [],
time = new Date().getTime(),
......@@ -373,10 +479,13 @@
});
}
return data;
})()
})(),
color: "#FFE08C"
}
]
});
</script>
</body>
</body>
</html>
\ No newline at end of file
......