Toggle navigation
Toggle navigation
This project
Loading...
Sign in
조민지
/
2018_2_project
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
조민지
2018-12-06 16:16:02 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7c8168b3c91b7d47ade34fbfcd9ccda0c4432fc9
7c8168b3
1 parent
dc48e761
차트에 push/pop 가능
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
39 deletions
code/highcharts.js
code/modules/exporting.js
graph/areaspline/index.htm
code/highcharts.js
View file @
7c8168b
This diff could not be displayed because it is too large.
code/modules/exporting.js
View file @
7c8168b
This diff is collapsed. Click to expand it.
graph/areaspline/index.htm
View file @
7c8168b
<!DOCTYPE
HTML
>
<!DOCTYPE
html
>
<html>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<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>
<style
type=
"text/css"
></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=
"container"
style=
"min-width: 310px; height: 400px; margin: 0 auto"
></div>
<script
src=
"../../code/highcharts.js"
></script>
<script
src=
"../../code/modules/exporting.js"
></script>
<script
src=
"../../code/modules/export-data.js"
></script>
<div
id=
"container"
style=
"min-width: 310px; height: 400px; margin: 0 auto"
></div>
<script
type=
"text/javascript"
>
var
death
=
[
3
,
4
,
3
,
5
,
4
,
10
,
12
];
var
temp
=
[
1
,
3
,
10
,
3
,
11
,
5
,
8
];
Highcharts
.
chart
(
'container'
,
{
var
chart
=
Highcharts
.
chart
(
"container"
,
{
chart
:
{
type
:
'areaspline'
type
:
"areaspline"
},
title
:
{
text
:
'실시간 사망률'
text
:
"실시간 사망률"
},
legend
:
{
layout
:
'vertical'
,
align
:
'left'
,
verticalAlign
:
'top'
,
layout
:
"vertical"
,
align
:
"left"
,
verticalAlign
:
"top"
,
x
:
150
,
y
:
100
,
floating
:
true
,
borderWidth
:
1
,
backgroundColor
:
(
Highcharts
.
theme
&&
Highcharts
.
theme
.
legendBackgroundColor
)
||
'#FFFFFF'
backgroundColor
:
(
Highcharts
.
theme
&&
Highcharts
.
theme
.
legendBackgroundColor
)
||
"#FFFFFF"
},
xAxis
:
{
categories
:
[
'Monday'
,
'Tuesday'
,
'Wednesday'
,
'Thursday'
,
'Friday'
,
'Saturday'
,
'Sunday'
"Monday"
,
"Tuesday"
,
"Wednesday"
,
"Thursday"
,
"Friday"
,
"Saturday"
,
"Sunday"
],
plotBands
:
[{
// visualize the weekend
plotBands
:
[
{
// 색칠되는 구간
from
:
4.5
,
to
:
6.5
,
color
:
'rgba(68, 170, 213, .2)'
}]
color
:
"rgba(68, 170, 213, .2)"
}
]
},
yAxis
:
{
title
:
{
text
:
'Fruit units'
text
:
"Fruit units"
}
},
tooltip
:
{
shared
:
tru
e
,
valueSuffix
:
' units'
shared
:
fals
e
,
valueSuffix
:
" %"
,
//point mouseover 단위
},
credits
:
{
enabled
:
false
...
...
@@ -70,14 +76,24 @@ Highcharts.chart('container', {
fillOpacity
:
0.5
}
},
series
:
[{
name
:
'사망률'
,
series
:
[
{
name
:
"사망률"
,
data
:
[
3
,
4
,
3
,
5
,
4
,
10
,
12
]
},
{
name
:
'기온'
,
data
:
[
1
,
3
,
4
,
3
,
3
,
5
,
4
]
}]
});
},
{
name
:
"기온"
,
data
:
[
1
,
3
,
10
,
3
,
3
,
5
,
4
]
}
]
});
death
.
push
(
11
);
temp
.
push
(
3
);
chart
.
series
[
0
].
setData
(
death
);
chart
.
series
[
1
].
setData
(
temp
);
</script>
</body>
</html>
\ No newline at end of file
...
...
Please
register
or
login
to post a comment