You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MichaelZinsmaier-CurvedLines/exampleFit.js

18 lines
502 B
JavaScript

<div id="flotFit"></div>
<script id="source" language="javascript" type="text/javascript">
$(function () {
var d1 = [[20,20], [42,60], [54, 30], [80,80]];
var options = { series: {
curvedLines: {
active: true
}
},
xaxis: { min:10, max: 100},
yaxis: { min:10, max: 90}
};
$.plot($("#flotFit"), [{data: d1, curvedLines: { show: true, fit: true, fitPointDist: 0.000001, lineWidth: 3}}, {data: d1, points: { show: true }}], options);
});
</script>