Вход Регистрация
Файл: Main Website Files/assets/bower_components/flot/examples/tracking/index.html
Строк: 91
<?php
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<
html>
<
head>
    <
meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <
title>Flot ExamplesTracking</title>
    <
link href="../examples.css" rel="stylesheet" type="text/css">
    <!--[if 
lte IE 8]><script language="javascript" type="text/javascript" src="../../excanvas.min.js"></script><![endif]-->
    <
script language="javascript" type="text/javascript" src="../../jquery.js"></script>
    <
script language="javascript" type="text/javascript" src="../../jquery.flot.js"></script>
    <
script language="javascript" type="text/javascript" src="../../jquery.flot.crosshair.js"></script>
    <
script type="text/javascript">

    $(function() {

        var 
sin = [], cos = [];
        for (var 
014+= 0.1) {
            
sin.push([iMath.sin(i)]);
            
cos.push([iMath.cos(i)]);
        }

        
plot = $.plot("#placeholder", [
            { 
datasinlabel"sin(x) = -0.00"},
            { 
datacoslabel"cos(x) = -0.00" }
        ], {
            
series: {
                
lines: {
                    
showtrue
                
}
            },
            
crosshair: {
                
mode"x"
            
},
            
grid: {
                
hoverabletrue,
                
autoHighlightfalse
            
},
            
yaxis: {
                
min: -1.2,
                
max1.2
            
}
        });

        var 
legends = $("#placeholder .legendLabel");

        
legends.each(function () {
            
// fix the widths so they don't jump around
            
$(this).css('width', $(this).width());
        });

        var 
updateLegendTimeout null;
        var 
latestPosition null;

        function 
updateLegend() {

            
updateLegendTimeout null;

            var 
pos latestPosition;

            var 
axes plot.getAxes();
            if (
pos.axes.xaxis.min || pos.axes.xaxis.max ||
                
pos.axes.yaxis.min || pos.axes.yaxis.max) {
                return;
            }

            var 
ijdataset plot.getData();
            for (
0dataset.length; ++i) {

                var 
series dataset[i];

                
// Find the nearest points, x-wise

                
for (0series.data.length; ++j) {
                    if (
series.data[j][0] > pos.x) {
                        break;
                    }
                }

                
// Now Interpolate

                
var y,
                    
p1 series.data[1],
                    
p2 series.data[j];

                if (
p1 == null) {
                    
p2[1];
                } else if (
p2 == null) {
                    
p1[1];
                } else {
                    
p1[1] + (p2[1] - p1[1]) * (pos.p1[0]) / (p2[0] - p1[0]);
                }

                
legends.eq(i).text(series.label.replace(/=.*/, "= " y.toFixed(2)));
            }
        }

        $(
"#placeholder").bind("plothover",  function (eventpositem) {
            
latestPosition pos;
            if (!
updateLegendTimeout) {
                
updateLegendTimeout setTimeout(updateLegend50);
            }
        });

        
// Add the Flot version string to the footer

        
$("#footer").prepend("Flot " + $.plot.version " &ndash; ");
    });

    </
script>
</
head>
<
body>

    <
div id="header">
        <
h2>Tracking</h2>
    </
div>

    <
div id="content">

        <
div class="demo-container">
            <
div id="placeholder" class="demo-placeholder"></div>
        </
div>

        <
p>You can add crosshairs that'll track the mouse position, either on both axes or as here on only one.</p>

        <p>If you combine it with listening on hover events, you can use it to track the intersection on the curves by interpolating the data points (look at the legend).</p>

        <p id="hoverdata"></p>

    </div>

    <div id="footer">
        Copyright &copy; 2007 - 2014 IOLA and Ole Laursen
    </div>

</body>
</html>
?>
Онлайн: 3
Реклама