X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=docs%2Findex.html;h=9148ee00dc9bcc217829b38c237537045a44d529;hb=fb369f35fe90a793a8f41e9cff251eae23e782d8;hp=10357839acfd3cfeb34820b75119a3522ce7e3dd;hpb=31eddad373355fb39fa948b65f9ba29e3f594e61;p=dygraphs.git diff --git a/docs/index.html b/docs/index.html index 1035783..9148ee0 100644 --- a/docs/index.html +++ b/docs/index.html @@ -19,6 +19,7 @@
  • Baseball chart
  • Stock chart
  • Options Reference
  • +
  • GWT Compatibility
  • Data Policy
  • @@ -57,7 +58,7 @@
  • Negative Numbers
  • Noisy Data
  • Multiple Series
  • -
  • Custom Underlay / background
  • +
  • Custom Underlay / background
  • @@ -507,7 +508,7 @@ perl -ne 'BEGIN{print "Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high) boolean false If the rolling average period text box should be shown. -
    Tests: callback crosshair fractions isolated-points numeric-gviz underlay-callback
    +
    Tests: callback crosshair fractions isolated-points numeric-gviz underlay-callback highlighted-region
    @@ -775,13 +776,22 @@ perl -ne 'BEGIN{print "Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high) highlightCallback function(event, x, points) - null + null When set, this callback gets called every time a new point is highlighted. The parameters are the JavaScript mousemove event, the x-coordinate of the highlighted points and an array of highlighted points: [ {name: 'series', yval: y-value}, … ]
    Tests: callback crosshair
    + unhighlightCallback + function(event) + null + When set, this callback gets called every time the user stops highlighting any point by mousing out of the graph. The parameter is the mouseout event. +
    Tests: callback crosshair
    + + + + strokeWidth 0.5, 2.0 1.0 @@ -819,6 +829,26 @@ perl -ne 'BEGIN{print "Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high)
  • Make sure you don't have any trailing commas in your call to the Dygraph constructor or in the options parameter. Firefox, Chrome and Safari ignore these but they can cause a graph to not display in Internet Explorer.
  • +

    GWT Compatibility

    +

    There is currently no GWT wrapper around Dygraphs, however there is a class that can be used to easily load Dygraphs into the browser. To use it, include the generated dygraph-gwt.jar file in your classpath and add the following line to your GWT module:

    + +
    +<inherits name="org.danvk.dygraphs"/>    
    +
    + +

    Call org.danvk.Dygraphs.install() when your application starts to install the JavaScript code into the browser. You can use JSNI to call Dygraphs from your GWT code, as in the example below. The example uses the Visualization API for GWT and the Dygraphs GViz API.

    + +
    +  public static native JavaScriptObject drawDygraph(Element element, DataTable dataTable, double minY, double maxY) /*-{
    +    var chart = new $wnd.Dygraph.GVizChart(element);
    +    chart.draw(dataTable,
    +      {
    +        valueRange: [minY, maxY]
    +      });
    +    return chart;
    +  }-*/;
    +
    +

    Data Policy

    dygraphs is purely client-side JavaScript. It does not send your data to any servers – the data is processed entirely in the client's browser.