-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
116 lines (106 loc) · 3.66 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>SVG/VML Demo一覧</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="hitsubunnu">
<link href="css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
body {
font-family: 'MS Gothic','sans-serif';
padding-top: 60px;
padding-bottom: 40px;
}
.add {
padding-top: 60px;
text-align: right;
float: right;
}
</style>
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<ul class="nav">
<li>
<div class="btn-group">
<button class="btn btn-primary">SVG/VML</button>
</div>
</li>
<li><a href="#demo_column" > Column </a></li>
<li><a href="#demo_line"> Line </a></li>
<li><a href="#demo_line_all"> Line(all) </a></li>
<li><a href="#demo_pie"> Pie(Animate)</a></li>
<li><a href="#demo_radar"> Radar </a></li>
<li><a href="#demo_bubble"> Bubble </a></li>
<li><a href="#demo_candlestick"> Candlestick</a></li>
<li><a href="#demo_candlestick_analysis"> Candlestick+Analysis </a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="hero-unit">
<h4>SVG/VML対応ブラウザ:</h4>
<p>Internet Explorer 6.0+ , Firefox 3.0+, Safari 3.0+, Chrome 5.0+, Opera 9.5+ , iphone(ios 3.0+), ipad(ios 3.0+) , android(3.0+ 及び 2.3+opera , 2.3+Firefox)</p>
<h4>API使い方:</h4>
<pre>
window.onload = function () {
new ChartColumn({
id:'show_demo',
width:'980',
height:'400',
data: ...
}).draw();
};
</pre>
</div>
<div id="demo_column">
<h3 class="add"><a href="demo_column.html" target="_black">Open Page</a></h3>
<iframe src="demo_column.html" width="1050" height="550"></iframe>
</div>
<br >
<div id="demo_line">
<h3 class="add"><a href="demo_line.html" target="_black">Open Page</a></h3>
<iframe src="demo_line.html" width="1050" height="550"></iframe>
</div>
<br >
<div id="demo_line_all">
<h3 class="add"><a href="demo_line_all.html" target="_black">Open Page</a></h3>
<iframe src="demo_line_all.html" width="1050" height="550"></iframe>
</div>
<br >
<div id="demo_pie">
<h3 class="add"><a href="demo_pie.html" target="_black">Open Page</a></h3>
<iframe src="demo_pie.html" width="1050" height="550"></iframe>
</div>
<br >
<div id="demo_radar">
<h3 class="add"><a href="demo_radar.html" target="_black">Open Page</a></h3>
<iframe src="demo_radar.html" width="1050" height="550"></iframe>
</div>
<br >
<div id="demo_bubble">
<h3 class="add"><a href="demo_bubble.html" target="_black">Open Page</a></h3>
<iframe src="demo_bubble.html" width="1050" height="550"></iframe>
</div>
<br >
<div id="demo_candlestick">
<h3 class="add"><a href="demo_candlestick.html" target="_black">Open Page</a></h3>
<iframe src="demo_candlestick.html" width="1050" height="580"></iframe>
</div>
<br >
<div id="demo_candlestick_analysis">
<h3 class="add"><a href="demo_candlestick_analysis.html" target="_black">Open Page</a></h3>
<iframe src="demo_candlestick_analysis.html" width="1050" height="720"></iframe>
</div>
<br >
</div>
</body>
</html>