-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFunctions.html
More file actions
56 lines (48 loc) · 1.82 KB
/
Functions.html
File metadata and controls
56 lines (48 loc) · 1.82 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
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>MindFusion Charting Sample - Functions</title>
<link href="common/samples.css" rel="stylesheet" />
<script type="text/javascript" src="common/samples.js"></script>
</head>
<body>
<input type="hidden" id="collapsed" />
<div id="header" style="height: 49px;">
<div style="float: left; margin-left: 5px;">
<a href="index.html" style="margin-left: 10px;">Index</a>
</div>
<div style="float: right; margin-right: 5px;">
<a href="Functions.js" style="margin-right: 10px;">View source</a>
<button id="expandButton" onclick="onExpandCollapse()">
›
</button>
</div>
</div>
<div id="info" style="top: 60px; bottom: 24px;">
<div id="infoTab" style="padding: 10px;">
<h1>
About this sample
</h1>
<p id="pinfo">
This example shows how to use different types of the functions for calculating the distribution of values along the scale.
</p>
</div>
</div>
<div id="content" style="top: 60px; bottom: 24px; overflow-y: scroll;">
<canvas id="gauge" width="350" height="250"></canvas>
<input type="radio" name="group" value="lin" id="lin" checked="checked" /> Linear
<input type="radio" name="group" value="log" id="log" /> Logarithmic
<input type="radio" name="group" value="custom" id="custom" /> Custom(Quadratic)
</div>
<div id="footer" style="height: 24px;">
<span id="copyright"></span>
</div>
<script src="Scripts/drawing.js" type="text/javascript"></script>
<script src="Scripts/controls.js" type="text/javascript"></script>
<script src="Scripts/common.js" type="text/javascript"></script>
<script src="Scripts/common-collections.js" type="text/javascript"></script>
<script src="Scripts/gauges.js" type="text/javascript"></script>
<script type="text/javascript" src="Functions.js"></script>
</body>
</html>