Flot charts. Adapt visible chart to the yaxis

688 Views Asked by At

Can I adapt the visble data in the chart to the Yaxis when I drag the chart across the x axis?

In the actual example I can drag the chart across the X Axis, but the chart doesnt adapted to the Y Axes. The y min, and the y max options are the same and calculate for all the chart.

http://plnkr.co/edit/Yulri34tqD80vLFHHGsD?p=preview

<!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 Examples: Real-time updates</title>
    <link href="http://www.flotcharts.org/flot/examples/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="http://www.flotcharts.org/flot/jquery.js"></script>
    <script language="javascript" type="text/javascript" src="http://www.flotcharts.org/flot/jquery.flot.js"></script>
    <script language="javascript" type="text/javascript" src="http://www.flotcharts.org/flot/jquery.flot.navigate.js"></script>




    <script type="text/javascript">

    $(function() {

        // We use an inline data source in the example, usually data would
        // be fetched from a server

        var data = [],
            totalPoints = 300;
            var xx = 0;

        function getRandomData() {

            if (data.length > 0)
                data = data.slice(1);
            // Do a random walk
            while (data.length < totalPoints) {

                var prev = data.length > 0 ? data[data.length - 1] : 50,
                y = prev + Math.random() * 10 - 5;

                if (y < 0) { y = 0; } else if (y > 100) { y = 100; }
                data.push(y);
            }

            // Zip the generated y values with the x values
            var res = [];
            for (var i = 0; i < data.length; ++i) {
                res.push([i, data[i]]); ++xx;
            }

            return res;
        }

        // Set up the control widget

        var updateInterval = 500;


        var plot = $.plot("#placeholder", [ getRandomData() ], {
            series: {
                shadowSize: 0   // Drawing is faster without shadows
            },
            yaxis: {min: 0,max: 100},
            xaxis: {
                min: 100,max: 200,
                zoomRange: [0, 300],
                panRange: [0, 300]
            },
            yaxis: {
                zoomRange: [0, 100], //minimo valor del y data, máximo valor
                panRange: [0, 100]
            },
            crosshair: {
                mode: "xy"
            },          
            zoom: { interactive: true},
            pan: {interactive: true,cursor: "crosshair"}
        });

        function update() {

            plot.setData([getRandomData()]);

            // Since the axes don't change, we don't need to call plot.setupGrid()

            plot.draw();
            setTimeout(update, updateInterval);
        }

        update();

    });

    </script>
</head>
<body>

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

</body>
</html>
1

There are 1 best solutions below

0
On

Take a look at

Flot charts - changing the y axis on the fly

You could get the min and max values and set the plot like that:

plot.getOptions().yaxes[0].min = 0;
plot.getOptions().yaxes[0].max = yourMAXNOW;