DESKTOP-PC6TBNS\강환석씨

Merge branch 'developing' of http://khuhub.khu.ac.kr/2017104029/2018_2_project into developing

......@@ -109,7 +109,7 @@
},
yAxis: {
title: {
text: "Value",
text: "사망확률(%)",
style: {
color: "white"
}
......@@ -251,7 +251,7 @@ plotOptions: {
},
yAxis: {
title: {
text: "Value",
text: "기온(°C)",
style: {
color: "white"
}
......@@ -272,7 +272,7 @@ plotOptions: {
},
tooltip: {
headerFormat: "<b>{series.name}</b><br/>",
pointFormat: "{point.x:%Y년%m월%d일 %H시%M분}<br/>의 기온 : {point.y:.2f}"
pointFormat: "{point.x:%Y년%m월%d일 %H시%M분}<br/>의 기온 : {point.y:.2f}°C"
},
legend: {
//enabled: false
......@@ -379,7 +379,7 @@ plotOptions: {
},
yAxis: {
title: {
text: "Value",
text: "풍속(m/s)",
style: {
color: "white"
}
......@@ -506,7 +506,7 @@ plotOptions: {
},
yAxis: {
title: {
text: "Value",
text: "강수량(mm)",
style: {
color: "white"
}
......@@ -602,21 +602,25 @@ plotOptions: {
chart1.series[0].addPoint({
x: date,
y: info.death
y: info.death,
color:"#FFE08C"
});
chart2.series[0].addPoint({
x: date,
y: info.temperature*1
y: info.temperature*1,
color:"#FFE08C"
});
chart3.series[0].addPoint({
x: date,
y: info.wind*1
y: info.wind*1,
color:"#FFE08C"
});
chart4.series[0].addPoint({
x: date,
y: info.rain*1
y: info.rain*1,
color:"#FFE08C"
});
});
......@@ -626,4 +630,4 @@ plotOptions: {
</body>
</html> -->
\ No newline at end of file
</html>
\ No newline at end of file
......