66 lines
1.8 KiB
66 lines
1.8 KiB
<html> |
|
<head> |
|
<title>Examples of Fit (Tension vs. Monotonic) | CurvedLines</title> |
|
<style> |
|
.chart-style { |
|
width: 400px; |
|
height: 240px; |
|
} |
|
</style> |
|
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> |
|
<script type="text/javascript" src="https://cdn.rawgit.com/flot/flot/v0.8.3/jquery.flot.js"></script> |
|
<script type="text/javascript" src="https://rawgit.com/MichaelZinsmaier/CurvedLines/master/curvedLines.js"></script> |
|
|
|
<script type="text/javascript"> |
|
$(function() { |
|
//data |
|
var d1 = [[20, 20], [25, 50], [27.5, 35], [30, 20], [35, 20]]; |
|
|
|
//flot options |
|
var options = { |
|
series: { |
|
curvedLines: {active: true} |
|
} |
|
}; |
|
|
|
//plotting |
|
$.plot($("#flotContainer"),[ |
|
{ |
|
data: d1, color: '#2b8cbe', |
|
lines: {show: true, lineWidth: 3}, |
|
//choose tension from [0,1] to see overshooting effects (0.5 is default) |
|
curvedLines: {apply: true, tension: 1} |
|
}, { |
|
data: d1, color: '#f03b20', |
|
points: {show: true} |
|
} |
|
], options); |
|
|
|
$.plot($("#flotContainer2"),[ |
|
{ |
|
data: d1, color: '#2b8cbe', |
|
lines: {show: true, lineWidth: 3}, |
|
//monotonicFit enforces monotonicity |
|
curvedLines: {apply: true, monotonicFit: true} |
|
}, { |
|
data: d1, color: '#f03b20', |
|
points: {show: true} |
|
} |
|
], options); |
|
}); |
|
</script> |
|
|
|
</head> |
|
<body> |
|
|
|
<h3>Examples of Fit (Tension vs. Monotonic)</h3> |
|
<h4>CurvedLines: with standard settings (shows effects of tension parameter)</h4> |
|
<div id="flotContainer" class="chart-style"></div> |
|
|
|
<h4>CurvedLines: with monotonicFit (no overshooting/wiggles) </h4> |
|
<div id="flotContainer2" class="chart-style"></div> |
|
<a href="index.html">Return to CurvedLines Examples list</a> |
|
</body> |
|
</html> |
|
|
|
|