-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (43 loc) · 1.29 KB
/
Copy pathindex.html
File metadata and controls
49 lines (43 loc) · 1.29 KB
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Syncfusion JavaScript (ES5) UI Control</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<meta name="description" content="Essential JS 2" />
<meta name="author" content="Syncfusion" />
<link rel="shortcut icon" href="resources/favicon.ico" />
<link href="./styles/material.min.css" rel="stylesheet" />
<script src="./scripts/ej2-lineargauge.min.js" type="text/javascript"></script>
</head>
<body>
<div class="sample-container">
<div class="textbox-container">
<!--element which is going to render the NumericTextBox -->
<input id="numeric" type="text" />
</div>
<div class="gauge-container">
<div id="linear1"></div>
</div>
<div class="gauge-container">
<div id="linear2"> </div>
</div>
<div class="gauge-container">
<div id="linear3"> </div>
</div>
</div>
<style>
.sample-container{
box-shadow:0 0 10px;
margin:10px;
border-radius:5px;
}
.gauge-container,.textbox-container{
box-shadow:0 0 10px inset;
padding: 15px;
text-align: center;
}
</style>
<script src="./app.js" type="text/javascript"></script>
</body>
</html>