-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo_radar.html
36 lines (31 loc) · 1000 Bytes
/
demo_radar.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>ChartRadar</title>
<link rel="stylesheet" href="css/demo.css" type="text/css">
<script src="js/raphael-min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/sc.radar.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
window.onload = function () {
new ChartRadar({
id:'show_demo',
width:'400',
height:'400',
title:{string: 'radar chart: ニュース評価',option: {fill: '#3266CC','font-size': 18} },
value_max: 10,
data:[
{string: "考えさせられる", value:9},
{string: "役に立つ", value:6},
{string: "興味深い", value:7},
{string: "誰かに教えたい", value:3},
{string: "びっくりした", value:8}
]
}).draw();
};
</script>
</head>
<body>
<p>ChartRadar</p>
<div id="show_demo" style="width:400"></div>
</body>
</html>