X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=docs%2Findex.html;h=aae433fb3f890cf6230c58b80d61ca9911ec640c;hb=refs%2Ftags%2Fv2.1.0;hp=d79b698f3784d651a1f45bcd20fe3a22006039c7;hpb=68f9bed30349ea126921490f2631dc30a404d092;p=dygraphs.git diff --git a/docs/index.html b/docs/index.html index d79b698..aae433f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,744 +1,95 @@ - - - dygraphs JavaScript Visualization Library - - - - - - - - -
-

dygraphs JavaScript Visualization Library

- -

http://github.com/danvk/dygraphs

-

See downloads, gallery and open issues

- -

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

- -

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

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

Some things to notice:

- - -

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:

- - -

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>
-</head>
-<body>
-<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"
-      );
-</script>
-</body>
-</html>
-    
-
-
-
-

OUTPUT

-
- -
+ + + + +

dygraphs is a fast, flexible open source JavaScript charting library.

+

It allows users to explore and interpret dense data sets. Here's how it works:

+ +
+
+ This JavaScript… +
new Dygraph(div, "ny-vs-sf.txt", {
+  legend: 'always',
+  title: 'NYC vs. SF',
+  showRoller: true,
+  rollPeriod: 14,
+  customBars: true,
+  ylabel: 'Temperature (F)',
+});
- -

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)

- -
-
-

HTML

- -
-<html>
-<head>
-<script type="text/javascript"
-    src="dygraph-combined.js"></script>
-</head>
-<body>
-<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>
-
-
-
-
-

OUTPUT

-
- -
+
+ …makes this chart! +
+
-

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>
-</head>
-<body>
-<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>
-
-
-
-
-

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>
-</head>
-<body>
-<div id="graphdiv4"
-    style="width:600px; height:300px;"></div>
-<script type="text/javascript">
-    g4 = new Dygraph(
-      document.getElementById("graphdiv4"),
-      "twonormals.csv",
+  
-        
-
- -

Things to note here:

-
    -
  • The errorBars option affects both the interpretation of the CSV file and the display of the graph. When errorBars is set to true, each line is interpreted as YYYYMMDD, A, sigma_A, B, sigma_B, …
  • -
  • The first line of the CSV file doesn't mention the error columns. In this case, it's just "Date,Series1,Series2".
  • -
  • The averaging visibly affects the error bars. This is most clear if you crank up the rolling period to something like 100 days. For the earliest dates, there won't be 100 data points to average so the signal will be noisier. The error bars get smaller like sqrt(N) going forward in time until there's a full 100 points to average.
  • -
  • The error bars are partially transparent. This can be seen when they overlap one another.
  • -
- -

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:

+

The chart is interactive: you can mouse over to highlight individual values. You can click and drag to zoom. Double-clicking will zoom you back out. Shift-drag will pan. You can change the number and hit enter to adjust the averaging period.

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

Features

+
    +
  • Handles huge data sets: dygraphs plots millions of points without getting bogged down. +
  • Interactive out of the box: zoom, pan and mouseover are on by default. +
  • Strong support for error bars / confidence intervals. +
  • Highly customizable: using options and custom callbacks, you can make dygraphs do almost anything. +
  • dygraphs is works in all recent browsers. You can even pinch to zoom on mobile/tablet devices! +
  • There's an active community developing and supporting dygraphs.
  • +
-

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

+

Getting Started

+

Start by downloading dygraphs. Then read the Tutorial to learn how to use it, or just play with dygraphs on jsFiddle.

-

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

+

Once you've got your feet wet, look for inspiration in the demo gallery or check out our list of users.

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

If you're using npm and a bundler like webpack, browserify or rollup, you can install dygraphs via:

-

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

+
npm install --save dygraphs
-

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:

- -
    -
  • The average of a1/b1 and a2/b2 is (a1+a2)/(b1+b2), not (a1/b1 + a2/b2)/2.
  • -
  • The normal approximation is not always applicable and more sophisticated confidence intervals (e.g. the Wilson confidence interval) must be employed to avoid ratios that exceed 100% or go below 0%.
  • -
- -

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,
-        rollPeriod: 15
-    }
-);
-
+ and use it via: -

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.

+
import Dygraph from 'dygraphs';
+// or: const Dygraph = require('dygraphs');
+const g = new Dygraph(div, data, {});
-

A couple things to notice about this chart:

-
    -
  • The error bars for Ichiro's batting average are larger than for the Mariners', since he has far fewer at bats than his team.
  • -
  • dygraphs makes it easy to see "batting average over the last 30 games". This is ordinarily quite difficult to compute. It makes it clear where the "hot" and "cold" part of Suzuki's season were.
  • -
  • If you set the averaging period to something large, like 200, you'll see the team's and player's batting average through that game. The final number is the overall batting average for the season.
  • -
  • Where the error bars do not overlap, we can say with 95% confidence that the series differ. There is a better than 95% chance that Ichiro was a better hitter than his team as a whole in 2004, the year he won the batting title.
  • -
- -

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.

- -
- - - -

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.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
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.
colorSaturation0.0 - 1.01.0If colors is not specified, saturation of the automatically-generated data series colors.
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)
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)
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.
strokeWidthinteger1Width of the data lines. This can be used to increase the contrast or some graphs.
dateWindow[
  Date.parse('2006-01-01'),
  (new Date()).valueOf()
]
Full range of the input is shownInitially 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].
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.
labelsKMBtruefalseShow K/M/B for thousands/millions/billions on y-axis.
labelsDivWidth250Width (in pixels) of the div which shows information on the currently-highlighted points.
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.
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.
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.
pixelsPerXLabelinteger60Number of pixels to require between each x- and y-label. Larger values will yield a sparser axis with fewer ticks.
pixelsPerYLabel30
xAxisLabelWidthintegerWidth (in pixels) of the x- and y-axis labels.
yAxisLabelWidth
axisLabelFontSizeinteger14Size of the font (in pixels) to use in the axis labels, both x- and y-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.
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.
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).
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.
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.
- -

Common Gotchas

- -

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

- -
    -
  • Make sure your CSV files are readable! If your graph isn't showing up, the XMLHttpRequest for the CSV file may be failing. You can determine whether this is the case using tools like Firebug.
  • -
  • Make sure your CSV files are in the correct format. They must be of the form YYYYMMDD, series1, series2, … . And if you set the errorBars property, make sure you alternate data series and standard deviations.
  • -
  • dygraphs are not happy when placed inside a <center> tag. This applies to the CSS text-align property as well. If you want to center a Dygraph, put it inside a table with align = center set.
  • -
  • Don't set the dateWindow property to a date. It expects milliseconds since epoch, which can be obtained from a JavaScript Date object's valueOf method.
  • - -
  • 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.
  • -
- -

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

-
+

Check out the dygraphs ES6 sample project for more details on this approach.

+
+
+

Quick Links

+ +
- - - +
- - +