testThreshold.htm 1.33 KB
Newer Older
1 2 3 4
<hmtl>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
		<title>CurvedLines Plugin for flot</title>
Kuhan Muniam's avatar
Kuhan Muniam committed
5
		 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
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
		<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../flot/excanvas.min.js"></script><![endif]-->
		<script language="javascript" type="text/javascript" src="../flot/jquery.flot.js"></script>
		<script language="javascript" type="text/javascript" src="../flot/jquery.flot.threshold.js"></script>
		<script language="JavaScript" type="text/javascript" src="../curvedLines.js"></script>
	</head>
	<body>
		<div id="flotOrig" style="width: 800;height: 400;"></div>

		<script id="source" language="javascript" type="text/javascript">
			var d1 = [[20, 20], [42, 60], [54, 20], [80, 80]];

			var options = {
				series : {
					curvedLines : {
						active : true
					},
					threshold : {
						below : 40,
						color : "rgb(0, 0, 0)"
					}
				},
				axis : {
					min : 10,
					max : 100
				},
				yaxis : {
					min : 10,
					max : 90
				}
			};

			$.plot($("#flotOrig"), [{
				data : d1,
				lines : {
					show : true,
					lineWidth : 3
				},
				curvedLines : {
					apply : true
				}
			}, {
				data : d1,
				points : {
					show : true
				}
			}], options);
		</script>
	</body>

</hmtl>