X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=docs%2Findex.html;h=8693bc9e084e40263e2bd6f6d655eef9cb425fc5;hb=60adad337b790d1e99414a5ca928203fe1326b83;hp=1dafc3a746cdad923d2ecec88d5d519e0104cbab;hpb=f30cf7405c2071be3b802bc569e2cab5a7675afa;p=dygraphs.git diff --git a/docs/index.html b/docs/index.html index 1dafc3a..8693bc9 100644 --- a/docs/index.html +++ b/docs/index.html @@ -34,6 +34,7 @@
  • Source
  • Issues
  • Report Bug
  • +
  • Contribute a change
  • Contact
  • @@ -68,6 +69,8 @@
  • Noisy Data
  • Multiple Series
  • Custom Underlay / background
  • +
  • Tests for zoom operations
  • +
  • Log scale tests
  • @@ -624,10 +627,10 @@ perl -ne 'BEGIN{print "Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high) zoomCallback - function(minDate,
    maxDate){}
    + function(minDate,
    maxDate,
    yRanges){}
    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. yRanges is an array of [bottom, top] pairs, one for each y-axis. +
    Tests: callback zoom
    @@ -728,7 +731,7 @@ perl -ne 'BEGIN{print "Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high) pointSize - interger + integer 1 The size of the dot to draw on each point in pixels (see drawPoints). A dot is always drawn when a point is "isolated", i.e. there is a missing point on either side of it. This also controls the size of those dots.
    Tests: none
    @@ -852,7 +855,7 @@ perl -ne 'BEGIN{print "Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high) highlightCallback - function(event, x, points) + function(event, x, points,row) 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
    @@ -869,6 +872,20 @@ perl -ne 'BEGIN{print "Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high) + underlayCallback + function(canvas, area, dygraph) + null + When set, this callback gets called before the chart is drawn. It + allows you to draw underneath the chart. See the tests for more + details on how to use this. +
    Tests: + underlay-callback + highlighted-region +
    + + + + strokeWidth 0.5, 2.0 1.0 @@ -930,6 +947,22 @@ perl -ne 'BEGIN{print "Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high) + + logscale + boolean + false + + When set for a y-axis, the graph shows that axis in y-scale. Any values less than or equal + to zero are not displayed.

    + + Not compatible with showZero, and ignores connectSeparatedPoints. Also, showing log scale + with valueRanges that are less than zero will result in an unviewable graph.
    + +
    Tests: logscale, + stock
    + + +