-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest01.html
More file actions
35 lines (30 loc) · 762 Bytes
/
Copy pathtest01.html
File metadata and controls
35 lines (30 loc) · 762 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt_BR">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Test 01 - Raphael</title>
<script type="text/javascript" src='raphael-min.js'></script>
<script type="text/javascript" src='gauges.js'></script>
<style type="text/css">
body {
background-color: black;
color: white;
}
</style>
</head>
<body>
<script type="text/javascript">
var vert = new verticalGauge({
x: 0,
y: 0,
red: [[0,10], [80, 100]],
yellow: [[40,70]],
green: [[15,30]],
marker: 40,
title: 'ABCDE',
value: '0.25'
});
</script>
</body>
</html>