X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=docs%2Findex.html;h=9d295aada2d068313d5fda73aee69d20a29593d1;hb=4f72c4699a3af843529ce2551eb02c4c1ef602fe;hp=2391867e971b957a1f0b1aca524e379651ef27b8;hpb=02817ffd0211582300607c300bfccdc7adddff49;p=dygraphs.git diff --git a/docs/index.html b/docs/index.html index 2391867..9d295aa 100644 --- a/docs/index.html +++ b/docs/index.html @@ -23,20 +23,30 @@
  • Data Policy
  • +

    Features

    + +

    Project

    Gallery

    @@ -110,10 +121,11 @@ +

    Determining Zoom

    + +

    + It is possible to detect whether a chart has been zoomed in either axis by the use of the isZoomed function. + If called with no argument, it will report whether either axis has been zoomed. + Alternatively it can be called with an argument of either 'x' or 'y' and it will report the status of just that axis. +

    + +

    Here's a simple example using drawCallback to display the various zoom states whenever the chart is zoomed:

    + +
    OUTPUT
    +
    +
    +

    Zoomed: False

    +

    Zoomed X: False

    +

    Zoomed Y: False

    +

    +
    +
    + +
    +
    + +

    +

    HTML
    + +
    +  new Dygraph(
    +
    +    // containing div
    +    document.getElementById("zoomdiv"),
    +
    +    // CSV or path to a CSV file.
    +    "Date,Temperature\n" +
    +    "2011-01-07,75\n" +
    +    "2011-01-08,70\n" +
    +    "2011-01-09,90\n" +
    +    "2011-01-10,30\n" +
    +    "2011-01-11,40\n" +
    +    "2011-01-12,60\n" +
    +    "2011-01-13,70\n" +
    +    "2011-01-14,40\n",
    +    {
    +      drawCallback: function(me, initial) {
    +        document.getElementById("zoomed").innerHTML = "" + me.isZoomed();
    +        document.getElementById("zoomedX").innerHTML = "" + me.isZoomed("x");
    +        document.getElementById("zoomedY").innerHTML = "" + me.isZoomed("y");
    +      }
    +    }
    +  );
    +
    +

    + +

    The Tests for zoom operations show a full example of this in action.

    +

    One last demo

    This chart shows monthly closes of the Dow Jones Industrial Average, both in nominal and real (i.e. adjusted for inflation) dollars. The shaded areas show its monthly high and low. CPI values with a base from 1982-84 are used to adjust for inflation.

    @@ -437,9 +536,38 @@ new Dygraph(el, data, { + +