X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=docs%2Findex.html;h=1a86ecc4d68210c2e2876a7b3b3f1772c6d99b9e;hb=71ac4733fec0ca3adab2ae5440db13e1cd2231f1;hp=0440c3a8a7ebe89ee379052e0817dd068f17ad6d;hpb=a1e8c3867181fdcad838fef709f2604e2c5cf305;p=dygraphs.git diff --git a/docs/index.html b/docs/index.html index 0440c3a..1a86ecc 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,132 +1,84 @@ + dygraphs JavaScript Visualization Library - + - - - - -
-

dygraphs JavaScript Visualization Library
-http://github.com/danvk/dygraphs
-See gallery and open issues

- -

The dygraphs JavaScript library produces produces interactive, zoomable charts of time series. It is designed to display dense data sets and enable users to explore and interpret them.

- -

Features

- - -

Demo

-

(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.)

-
Temperatures in New York vs. San Francisco
-
- - -

Some things to notice:

- - -

For more demos, browse the dygraph tests directory.

- -

Usage

- -

To use dygraphs, include the dygraph-combined.js JavaScript file and instantiate a Dygraph object.

- -

Here's a basic example to get things started:

- - - - - - -
HTMLOutput
+        );
+      
+
+      

Some things to notice:

+
    +
  • There's less seasonal temperature variation in SF than in NY.
  • +
  • The difference is about 15° F for SF vs. 50° F for NY.
  • +
  • The daily data (set rolling period to 1) is quite noisy and hides this conclusion.
  • +
  • Using a 14-day moving average makes it clearer. A 100-day rolling period averages out nearly all the specifics from the data.
  • +
  • There's a gap in the data for SF, when the weather station was down (zoom into October 2007 to see it).
  • +
  • The bands around each point indicate average highs and lows.
  • +
  • There is a lot of data in this chart: low, average and high for each city on each day of a three year period ≈ 6000 data points in all.
  • +
+ +

dygraphs allows the user to explore the data and discover these facts.

+ +

For more demos, browse the dygraph tests directory.

+ +

Features

+

Some of the features of dygraphs:

+
    +
  • Plots time series without using an external server or Flash
  • +
  • Works in Internet Explorer (using excanvas)
  • +
  • Lightweight (45kb) and responsive
  • +
  • Displays values on mouseover (this makes it easily discoverable)
  • +
  • Supports error bands around data series
  • +
  • Interactive zoom
  • +
  • Adjustable averaging period
  • +
  • Can intelligently chart fractions
  • +
  • Customizable click-through actions
  • +
  • Compatible with the Google Visualization API
  • +
  • Intelligent defaults make it easy to use
  • +
+ +

Usage

+ +

To use dygraphs, include the dygraph-combined.js JavaScript file and instantiate a Dygraph object.

+ +

Here's a basic example to get things started:

+ +
+
+

HTML

+ +
 <html>
 <head>
-<script type="text/javascript"
-  src="dygraph-combined.js"></script>
+<script type="text/javascript"
+  src="dygraph-combined.js"></script>
 </head>
 <body>
-<div id="graphdiv"></div>
-<script type="text/javascript">
+<div id="graphdiv"></div>
+<script type="text/javascript">
   g = new Dygraph(
-        // containing div
-        document.getElementById("graphdiv"),
-        // CSV or path to a CSV file.
-        "Date,Temperature\n" +
-        "2008-05-07,75\n" +
-        "2008-05-08,70\n" +
-        "2008-05-09,80\n"
-      );
+
+    // containing div
+    document.getElementById("graphdiv"),
+
+    // CSV or path to a CSV file.
+    "Date,Temperature\n" +
+    "2008-05-07,75\n" +
+    "2008-05-08,70\n" +
+    "2008-05-09,80\n"
+
+  );
 </script>
 </body>
 </html>
 
-
-
-
- - - -

In order to keep this example self-contained, the second parameter is raw CSV data. The dygraphs library parses this data (including column headers), resizes the its container to a reasonable default, calculates appropriate axis ranges and tick marks and draws the graph.

- -

In most applications, it makes more sense to include a CSV file instead. If the second parameter to the constructor doesn't contain a newline, it will be interpreted as the path to a CSV file. The Dygraph will perform an XMLHttpRequest to retrieve this file and display the data when it becomes available. Make sure your CSV file is readable and serving from a place that understands XMLHttpRequest's! In particular, you cannot specify a CSV file using "file:///". Here's an example: (data from Weather Underground)

- - - - - - -
HTMLOutput
+          
+        
+        
+

OUTPUT

+
+ +
+ + +

In order to keep this example self-contained, the second parameter is raw CSV data. The dygraphs library parses this data (including column headers), resizes its container to a reasonable default, calculates appropriate axis ranges and tick marks and draws the graph.

+ +

In most applications, it makes more sense to include a CSV file instead. If the second parameter to the constructor doesn't contain a newline, it will be interpreted as the path to a CSV file. The Dygraph will perform an XMLHttpRequest to retrieve this file and display the data when it becomes available. Make sure your CSV file is readable and serving from a place that understands XMLHttpRequest's! In particular, you cannot specify a CSV file using "file:///". Here's an example: (data from Weather Underground)

+ +
+
+

HTML

+ +
 <html>
 <head>
-<script type="text/javascript"
-  src="dygraph-combined.js"></script>
+<script type="text/javascript"
+  src="dygraph-combined.js"></script>
 </head>
 <body>
-<div id="graphdiv"
-  style="width:500px; height:300px;"></div>
-<script type="text/javascript">
-  new Dygraph(
-    document.getElementById("graphdiv"),
-    "temperatures.csv",  // path to CSV file
-    {}                   // options
+<div id="graphdiv2"
+  style="width:500px; height:300px;"></div>
+<script type="text/javascript">
+  g2 = new Dygraph(
+    document.getElementById("graphdiv2"),
+    "temperatures.csv", // path to CSV file
+    {}          // options
   );
 </script>
 </body>
 </html>
 
-
-
-
- - - -

Click here to view the temperatures.csv file. There are a few things to note here:

- - - -

This problem can be fixed by specifying the appropriate options in the "additional options" parameter to the Dygraph constructor. To set the number of days for a moving average, use the rollPeriod option. Here's how it's done:

- - - - - - -
HTMLOutput
+          
+        
+        
+

OUTPUT

+
+ +
+ + +

The file used is temperatures.csv.

+ +

There are a few things to note here:

+ +
    +
  • The Dygraph sent off an XHR to get the temperatures.csv file.
  • +
  • The labels were taken from the first line of temperatures.csv, which is Date,High,Low.
  • +
  • The Dygraph automatically chose two different, easily-distinguishable colors for the two data series.
  • +
  • The labels on the x-axis have switched from days to months. If you zoom in, they'll switch to weeks and then days.
  • +
  • Some heuristics are used to determine a good vertical range for the data. The idea is to make all the data visible and have human-friendly values on the axis (i.e. 200 instead of 193.4). Generally this works well.
  • +
  • The data is very spiky. A moving average would be easier to interpret.
  • +
+ +

This problem can be fixed by specifying the appropriate options in the "additional options" parameter to the Dygraph constructor. To set the number of days for a moving average, use the rollPeriod option. Here's how it's done:

+ +
+
+

HTML

+ +
 <html>
 <head>
-<script type="text/javascript"
-  src="dygraph-combined.js"></script>
+<script type="text/javascript"
+  src="dygraph-combined.js"></script>
 </head>
 <body>
-<div id="graphdiv"
-  style="width:500px; height:300px;"></div>
-<script type="text/javascript">
-  g = new Dygraph(
-        document.getElementById("graphdiv"),
-        "temperatures.csv",
-        { rollPeriod: 7,
-          showRoller: true,
-        }
-      );
+<div id="graphdiv3"
+  style="width:500px; height:300px;"></div>
+<script type="text/javascript">
+  g3 = new Dygraph(
+    document.getElementById("graphdiv3"),
+    "temperatures.csv",
+    {
+      rollPeriod: 7,
+      showRoller: true
+    }
+  );
 </script>
 </body>
 </html>
 
-
-
-
- - - -

A rolling average can be set using the text box in the lower left-hand corner of the graph (the showRoller attribute is what makes this appear). Also note that we've explicitly set the size of the chart div.

- -

Error Bars

-

Another significant feature of the dygraphs library is the ability to display error bars around data series. One standard deviation must be specified for each data point. A +/-n sigma band will be drawn around the data series at that point. If a moving average is being displayed, dygraphs will compute the standard deviation of the average at each point. (i.e. σ = sqrt((σ_1^2 + σ_2^2 + ... + σ_n^2)/n))

- -

Here's a demonstration. There are two data series. One is N(100,10) with a standard deviation of 10 specified at each point. The other is N(80,20) with a standard deviation of 20 specified at each point. The CSV file was generated using Octave and can be viewed here.

- - - - - - -
HTMLOutput
+          
+        
+        
+

OUTPUT

+
+ +
+ + +

A rolling average can be set using the text box in the lower left-hand corner of the graph (the showRoller attribute is what makes this appear). Also note that we've explicitly set the size of the chart div.

+ +

Error Bars

+ +

Another significant feature of the dygraphs library is the ability to display error bars around data series. One standard deviation must be specified for each data point. A ±n sigma band will be drawn around the data series at that point. If a moving average is being displayed, dygraphs will compute the standard deviation of the average at each point. I.E. σ = sqrt( (σ12 + σ22 + ... + σn2) / n )

+ +

Here's a demonstration. There are two data series. One is N(100,10) with a standard deviation of 10 specified at each point. The other is N(80,20) with a standard deviation of 20 specified at each point. The CSV file was generated using Octave and can be viewed at twonormals.csv.

+ +
+
+

HTML

+ +
 <html>
 <head>
-<script type="text/javascript"
-  src="combined.js"></script>
+<script type="text/javascript"
+  src="combined.js"></script>
 </head>
 <body>
-<div id="graphdiv" 
- style="width:600px; height:300px;"
- ></div>
-<script type="text/javascript">
-$ = document.getElementById;
-g = new Dygraph(
-  $("graphdiv"),
-  "twonormals.csv",
-  { rollPeriod: 7,
-    showRoller: true,
-    errorBars: true,
-    valueRange: [50,125]
-  }
-);
+<div id="graphdiv4"
+  style="width:600px; height:300px;"></div>
+<script type="text/javascript">
+  g4 = new Dygraph(
+    document.getElementById("graphdiv4"),
+    "twonormals.csv",
+    {
+      rollPeriod: 7,
+      showRoller: true,
+      errorBars: true,
+      valueRange: [50,125]
+    }
+  );
 </script>
 </body>
 </html>
 
-
-
-
- - - -

Things to note here:

- - -

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.

- -
- +
+ + +

Things to note here:

+ + + +

Internet Explorer Compatibility

+ +

The dygraphs library relies heavily on HTML's <canvas> tag, which Microsoft Internet Explorer does not support. Fortunately, some clever engineers created the excanvas library, which implements the <canvas> tag in IE using VML.

+ +

You can add IE support to any page using dygraphs by including the following in your page:

+ +
+<head>
+  <!--[if IE]><script src="excanvas.js"></script><![endif]-->
+</head>
+
+ +

This works quite well in practice. Charts are responsive, even under VML emulation.

+ +

One common gotcha to look out for: make sure you don't have any trailing commas in parameter lists, e.g.

+ +
+new Dygraph(el, data, {
+  showRoller: true,  // note trailing comma
+})
+ +

Most browsers will ignore the trailing comma, but it will break under IE.

+ +

GViz Data

+ +

The Google Visualization API provides a standard interface for describing data. Once you've specified your data using this API, you can plug in any GViz-compatible visualization. dygraphs is such a visualization.

+ +

For a simple demonstration of how to use dygraphs a GViz visualization, see http://danvk.org/dygraphs/tests/gviz.html. dygraphs can also be used as a GViz gadget. This allows it to be embedded inside of a Google Spreadsheet. For a demonstration of this, see this spreadsheet. The URL for the gadget is http://danvk.org/dygraphs/gadget.xml.

+ +

Here's an example of a published gviz gadget using dygraphs:

+ + + +

Charting Fractions

+ +

Situations often arise where you want to plot fractions, e.g. the fraction of respondents in a poll who said they'd vote for candidate X or the number of hits divided by at bats (baseball's batting average). Fractions require special treatment for two main reasons:

+ + + +

Fortunately, dygraphs handles both of these for you! Here's a chart and the command that generated it:

+ +
Batting Average for Ichiro Suzuki vs. Mariners (2004)
+
+ + +

Command:

+
+  new Dygraph(
+    document.getElementById("baseballdiv"),
+    "suzuki-mariners.txt",
     {
+      fractions: true,
+      errorBars: true,
       showRoller: true,
-      customBars: true,
-      labelsKMB: true });
-
+      rollPeriod: 15
+    }
+  );
+
+ +

The fractions option indicates that the values in each column should be parsed as fractions (e.g. "1/2" instead of "0.5"). The errorBars option indicates that we'd like to see a confidence interval around each data point. By default, when fractions is set, you get a Wilson confidence interval. If you look carefully at the chart, you can see that the error bars are asymmetric.

+ +

A couple things to notice about this chart:

+ + + +

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.

+ +
+

Display: + + + + +

+ + +

Other Options

+ +

These are the options that can be passed in through the optional third parameter of the Dygraph constructor. Under each option is a set of links to tests which demonstrate its use. While we attempt to keep this list up-to-date, a more complete list can be found in the Dygraph.DEFAULT_ATTRS map in dygraph.js and the this.options map in dygraph-canvas.js.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValuesDefaultDescription
includeZerobooleanfalseUsually, dygraphs will use the range of the data plus some padding to set the range of the y-axis. If this option is set, the y-axis will always include zero, typically as the lowest value. This can be used to avoid exaggerating the variance in the data. + +
rollPeriodinteger >= 11Number of days over which to average data. Discussed extensively above. + +
showRollerbooleanfalseIf the rolling average period text box should be shown. + +
colors['red', '#00FF00']List of colors for the data series. These can be of the form "#AABBCC" or "rgb(255,100,200)" or "yellow", etc. If not specified, equally-spaced points around a color wheel are used. + +
fillGraphboolean
falseShould the area underneath the graph be filled? This option is not + compatible with error bars. +
Tests: fillGraph
+
visibilityArray of booleans
[true, true, ...]Which series should initially be visible? Once the Dygraph has + been constructed, you can access and modify the visibility of each + series using the visibility and + setVisibility methods. + +
colorSaturation0.0 - 1.01.0If colors is not specified, saturation of the automatically-generated data series colors. +
Tests: none
+
colorValuefloat (0.0 — 1.0)1.0If colors is not specified, value of the data series colors, as in hue/saturation/value. (0.0-1.0, default 0.5) +
Tests: none
+
clickCallbackfunction(e, date){
    alert(date);
}
nullA function to call when a data point is clicked. The function should take two arguments, the event object for the click and the date that was clicked. (default null) +
Tests: callback
+
zoomCallbackfunction(minDate,
maxDate){}
nullA function to call when the zoom window is changed (either by zooming in or out). minDate and maxDate are milliseconds since epoch. +
Tests: callback
+
strokeWidthinteger1Width of the data lines. This can be used to increase the contrast or some graphs. +
Tests: none
+
dateWindow[
  Date.parse('2006-01-01'),
  (new Date()).valueOf()
]
Full range of the
input is shown
Initially zoom in on a section of the graph. Is of the form [earliest, latest], where earliest/latest are milliseconds since epoch. + +
valueRange[10, 110]Explicitly set the vertical range of the graph to [low, high]. +
Tests: none
+
labelsSeparateLinesbooleanfalsePut <br/> between lines in the label string. Often used in conjunction with labelsDiv. + +
labelsDivdocument.
getElementById('foo')
nullShow data labels in an external div, rather than on the graph. +
Tests: demo label-div
+
labelsKMBtruefalseShow K/M/B for thousands/millions/billions on y-axis. + +
labelsKMG2truefalseShow k/M/G for kilo/Mega/Giga on y-axis. This is different than + labelsKMB in that it uses base 2, not 10. +
Tests: labelsKMB
+
labelsDivWidth250Width (in pixels) of the div which shows information on the currently-highlighted points. +
Tests: customLabel
+
labelsDivStyles{}nullAdditional styles to apply to the currently-highlighted points div. For example, { 'font-weight': 'bold' } will make the labels bold. + +
highlightCircleSizeinteger3The size in pixels of the dot drawn over highlighted points. +
Tests: grid_dot
+
drawPointsbooleanfalseDraw a small dot at each point, in addition to a line going through the point. This makes the individual data points easier to see, but can increase visual clutter in the chart. +
Tests: draw-points
+
pointSizeinterger1The 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
+
pixelsPerXLabelinteger60Number of pixels to require between each x- and y-label. Larger values will yield a sparser axis with fewer ticks. +
Tests: spacing
+
pixelsPerYLabel30
xAxisLabelWidthintegerWidth (in pixels) of the x- and y-axis labels. +
Tests: customLabel
+
yAxisLabelWidth
axisLabelFontSizeinteger14Size of the font (in pixels) to use in the axis labels, both x- and y-axis. +
Tests: none
+
xAxisLabelFormatterfunction(date, granularity)Dygraph.dateAxisFormatterFunction to call to format values along the x axis. + +
rightGapintegerNumber of pixels to leave blank at the right edge of the Dygraph. This makes it easier to highlight the right-most data point. +
Tests: none
+
errorBarsbooleanfalseDoes the data contain standard deviations? Setting this to true alters the input format (see above). + +
sigmaintegerWhen errorBars is set, shade this many standard deviations above/below each point. +
Tests: none
+
fractionsbooleanfalseWhen set, attempt to parse each cell in the CSV file as "a/b", where a and b are integers. The ratio will be plotted. This allows computation of Wilson confidence intervals (see below). +
Tests: fractions
+
wilsonIntervalbooleantrueUse in conjunction with the "fractions" option. Instead of plotting +/- N standard deviations, dygraphs will compute a Wilson confidence interval and plot that. This has more reasonable behavior for ratios close to 0 or 1. +
Tests: none
+
customBarsbooleanfalseWhen set, parse each CSV cell as "low;middle;high". Error bars will be drawn for each point between low and high, with the series itself going through middle. + +
drawCallbackfunction(dygraph, is_initial)nullWhen set, this callback gets called every time the dygraph is drawn. This includes the initial draw, after zooming and repeatedly while panning. The first parameter is the dygraph being drawn. The second is a boolean value indicating whether this is the initial draw. + +
gridLineColorred, bluergb(128,128,128)The color of the gridlines. +
Tests: grid_dot
+
highlightCallbackfunction(event, x, points)nullWhen 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}, … ] + +
unhighlightCallbackfunction(event)nullWhen 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. + +
strokeWidth0.5, 2.01.0The width of the lines connecting data points. +
Tests: grid_dot
+
widthinteger480Width/Height (in pixels) of the chart. If the container div has been explicitly sized, these attributes will be ignored. + +
height320
+ +

Common Gotchas

+ +

Here are a few problems that I've frequently run into while using the dygraphs library.

+ + + +

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 data, 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.

+ +

Created May 9, 2008 by Dan Vanderkam

+ - -

Other Options

-

These are the options that can be passed in through the optional third parameter of the Dygraph constructor. To see demonstrations of many of these options, browse the dygraphs tests directory.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameSample ValueDescription
includeZerotrue, falseUsually, dygraphs will use the range of the data plus some padding to - set the range of the y-axis. If this option is set, the y-axis will always - include zero, typically as the lowest value. This can be used to avoid - exaggerating the variance in the data.
rollPeriod7Number of days over which to average data. Discussed extensively above.
showRollertrueShould the rolling average period text box be shown? Default is false.
colors['red', '#00FF00']List of colors for the data series. These can be of the form "#AABBCC" - or "rgb(255,100,200)" or "yellow", etc. If not specified, equally-spaced - points around a color wheel are used.
colorSaturation1.0If colors is not specified, saturation of the - automatically-generated data series colors. (0.0-1.0, default: - 1.0)
colorValue0.5If colors is not specified, value of the data series colors, as in - hue/saturation/value. (0.0-1.0, default 0.5)
clickCallbackfunction(e,date){ alert(date); }A function to call when a data point is clicked. The function should take - two arguments, the event object for the click and the date that was - clicked. (default null)
zoomCallbackfunction(minDate,maxDate) {}A function to call when the zoom window is changed (either by zooming - in or out). minDate and maxDate are millis since epoch.
strokeWidth2.0Width of the data lines. This can be used to increase the contrast or - some graphs. (default 1.0)
dateWindow[Date.parse('2006-01-01'),
- (new Date()).valueOf()]
Initially zoom in on a section of the graph. Is of the form [earliest, - latest], where earliest/latest are millis since epoch. By default, the - full range of the input is shown.
valueRange[10, 110]Explicitly set the vertical range of the graph to [low, high]. By - default, some clever heuristics are used (see above).
labelsSeparateLinestruePut <br/> between lines in the label string. Often used in - conjunction with labelsDiv. (default false)
labelsDivdocument.getElementById('foo')Show data labels in an external div, rather than on the graph. (default - null)
labelsKMBtrueShow K/M/B for thousands/millions/billions on y-axis (default - false).
labelsDivWidth250Width (in pixels) of the div which shows information on the - currently-highlighted points.
labelsDivStyles{}Additional styles to apply to the currently-highlighted points div. For - example, { 'font-weigth': 'bold' } will make the labels bold.
highlightCircleSize3Size (in pixels) of the dot drawn over highlighted points (default 3).
drawPointsfalseDraw a small dot at each point, in addition to a line going through - the point. This makes the individual data points easier to see, but can - increase visual clutter in the chart. Default: false
pointSize1.0The 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.
pixelsPerXLabel, pixelsPerYLabel50Number of pixels to require between each x- and y-label. Larger values - will yield a sparser axis with fewer ticks. Defaults: 60 (x-axis), 30 - (y-axis).
xAxisLabelWidth, yAxisLabelWidth50Width (in pixels) of the x- and y-axis labels.
axisLabelFontSize14Size of the font (in pixels) to use in the axis labels, both x- and - y-axis.
rightGap5Number of pixels to leave blank at the right edge of the Dygraph. This - makes it easier to highlight the right-most data point.
errorBarsfalseDoes the data contain standard deviations? Setting this to true alters - the input format (see above). (default false)
sigma2When errorBars is set, shade this many standard deviations above/below - each point.
fractionsfalseWhen set, attempt to parse each cell in the CSV file as "a/b", where a - and b are integers. The ratio will be plotted. This allows computation of - Wilson confidence intervals (see below).
wilsonIntervaltrueUse in conjunction with the "fractions" option. Instead of plotting +/- - N standard deviations, dygraphs will compute a Wilson confidence interval - and plot that. This has more reasonable behavior for ratios close to 0 or - 1.
customBarsfalseWhen set, parse each CSV cell as "low;middle;high". Error bars will be - drawn for each point between low and high, with the series itself going - through middle.
- -

Common Gotchas

-

Here are a few problems that I've frequently run into while using the -dygraphs library.

- - - - -

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.

- -

Created May 9, 2008 by Dan Vanderkam

- - - - - - - + + +