added a test plot for a single data point and resolved the issues with it
parent
5080965723
commit
fbf3cf7f60
@ -0,0 +1,41 @@
|
||||
<hmtl>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>CurvedLines Plugin for flot</title>
|
||||
<script type="text/javascript" src="../jquery-1.8.3.min.js"></script>
|
||||
<!--[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="../curvedLines.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="placeholder" style="width: 800;height: 400;"></div>
|
||||
|
||||
<script id="source" language="javascript" type="text/javascript">
|
||||
var d1 = [[4, 4]];
|
||||
var options = {
|
||||
series : {
|
||||
curvedLines : {
|
||||
active : true,
|
||||
fit : true
|
||||
}
|
||||
}
|
||||
};
|
||||
$.plot($("#placeholder"), [{
|
||||
data : d1,
|
||||
lines : {
|
||||
show : true
|
||||
},
|
||||
curvedLines : {
|
||||
apply : true
|
||||
}
|
||||
}, {
|
||||
data : d1,
|
||||
points : {
|
||||
show : true
|
||||
}
|
||||
}], options);
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</hmtl>
|
||||
|
||||
Loading…
Reference in New Issue