forked from MindFusionComponents/JavaScript-Diagram-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (33 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
41 lines (33 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Server Load</title>
<script src="Scripts/MindFusion.Common.js" type="text/javascript"></script>
<link href="common/jquery-ui.min.css" rel="stylesheet" />
<script type="text/javascript" src="common/jquery.min.js"></script>
<script type="text/javascript" src="common/jquery-ui.min.js"></script>
<script type="text/javascript" src="Scripts/config.js"></script>
<script src="Scripts/MindFusion.Diagramming.js" type="text/javascript"></script>
<link href="common/style.css" rel="stylesheet" />
</head>
<body>
<section>
<div class="column">
<canvas id="lineChart"></canvas>
</div>
</section>
<section>
<div class="column">
Click on a link in the network to show its load. Click and drag with the mouse or hold 'Ctrl' to select several links. Click anywhere else on the diagram to return to default.
<canvas id="diagram"></canvas>
</div>
<div class="column">
Average User Count:
<canvas width="320" height="320" id="userCounter" style="padding: 20px 10px 0px 10px;"></canvas>
</div>
</section>
<script src="Scripts/diagram.js" type="text/javascript"></script>
<script data-main="charts" src="Scripts/require.js"></script>
</body>
</html>