From 5ed061d6e6208d1b3f05a0ccd2010c6ce087b674 Mon Sep 17 00:00:00 2001 From: Robert Konigsberg Date: Fri, 24 Sep 2010 12:16:24 -0400 Subject: [PATCH] Update index.html docs to clarify callbacks and features. --- docs/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/index.html b/docs/index.html index 2abf548..4369588 100644 --- a/docs/index.html +++ b/docs/index.html @@ -73,7 +73,7 @@

A demo is worth a thousand words:

-

(Mouse over to highlight individual values. Click and drag to zoom. Double-click to zoom back out. Change the number and hit enter to adjust the averaging period.)

+

(Mouse over to highlight individual values. Click and drag to zoom in both axes. Double-click to zoom back out. Change the number and hit enter to adjust the averaging period.)

Temperatures in New York vs. San Francisco
@@ -114,7 +114,7 @@
  • Lightweight (45kb) and responsive
  • Displays values on mouseover (this makes it easily discoverable)
  • Supports error bands around data series
  • -
  • Interactive zoom
  • +
  • Interactive zoom and pan
  • Adjustable averaging period
  • Can intelligently chart fractions
  • Customizable click-through actions
  • @@ -566,10 +566,10 @@ perl -ne 'BEGIN{print "Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high) zoomCallback - function(minDate,
    maxDate){}
    + function(minDate,
    maxDate,
    minValue,
    maxValue){}
    null - A function to call when the zoom window is changed (either by zooming in or out). minDate and maxDate are milliseconds since epoch. -
    Tests: callback
    + A function to call when the zoom window is changed (either by zooming in or out). minDate and maxDate are milliseconds since epoch. minValue and maxValue are y-axis range values. +
    Tests: callback zoom
    -- 2.7.4