-
Notifications
You must be signed in to change notification settings - Fork 37
/
pie.html
67 lines (67 loc) · 1.99 KB
/
pie.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Raphaël · Pie Chart</title>
<link rel="stylesheet" href="demo.css"media="screen">
<link rel="stylesheet" href="demo-print.css"media="print">
<script src="raphael.js"></script>
<script src="jquery.js"></script>
<script src="pie.js"></script>
<style media="screen">
#holder {
margin: -350px 0 0 -350px;
width: 700px;
height: 700px;
}
</style>
</head>
<body>
<table>
<tbody>
<tr>
<th scope="row">Ruby</th>
<td>40%</td>
</tr>
<tr>
<th scope="row">JavaScript</th>
<td>26%</td>
</tr>
<tr>
<th scope="row">Shell</th>
<td>5%</td>
</tr>
<tr>
<th scope="row">Python</th>
<td>5%</td>
</tr>
<tr>
<th scope="row">PHP</th>
<td>4%</td>
</tr>
<tr>
<th scope="row">C</th>
<td>4%</td>
</tr>
<tr>
<th scope="row">Perl</th>
<td>3%</td>
</tr>
<tr>
<th scope="row">C++</th>
<td>2%</td>
</tr>
<tr>
<th scope="row">Java</th>
<td>2%</td>
</tr>
<tr>
<th scope="row">Objective-C</th>
<td>2%</td>
</tr>
</tbody>
</table>
<div id="holder"></div>
<p id="copy">Demo of <a href="http://raphaeljs.com/">Raphaël</a>—JavaScript Vector Library</p>
</body>
</html>