From fb369f35fe90a793a8f41e9cff251eae23e782d8 Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Tue, 15 Jun 2010 18:50:57 -0700 Subject: [PATCH] fix bug reported by kakligian --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 421ca3a..9148ee0 100644 --- a/docs/index.html +++ b/docs/index.html @@ -839,7 +839,7 @@ perl -ne 'BEGIN{print "Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high)

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 data, double minY, double maxY) /*-{
+  public static native JavaScriptObject drawDygraph(Element element, DataTable dataTable, double minY, double maxY) /*-{
     var chart = new $wnd.Dygraph.GVizChart(element);
     chart.draw(dataTable,
       {
-- 
2.7.4