X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=docs%2Findex.html;h=21b22f4f92cf9d5f7ff0ea56f5fb9cab9d470d91;hb=d97bf726ccc5645e60171f86b134fb29ac31b846;hp=faf5554a79f395bbdaad0578a3aeac57aa6e0622;hpb=6153f697b779d1cb001700beacb443d75fcc5914;p=dygraphs.git diff --git a/docs/index.html b/docs/index.html index faf5554..21b22f4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,406 +1,83 @@ - - - dygraphs JavaScript Library - - - - - -
-

dygraphs JavaScript Library
- (Contact: Dan Vanderkam)

-
- -

The dygraphs JavaScript library produces produces interactive, zoomable charts of time series based on CSV files.

- -

Features

- - -

Caveats

- - -

Demo

-(Mouse over to highlight individual values. Click and drag to zoom. Double-click to zoom out.)
- -
-
-
-
-
- - -

Usage

- -

The DateGraph library depends on two other JS libraries: MochiKit and PlotKit. Rather than tracking down copies of these libraries, I recommend using a packed version of dygraphs that combines all three libraries into a single JS file. Either grab this file from dygraph project's downloads page or create it yourself by checking out a copy of the code and running: - -

./generate-combined.sh
- -

The combined JS file is now in dygraph-combined.js. Here's a basic example to get things started:

- - - - - - -
HTMLOutput
-<html>
-<head>
-<script type="text/javascript" src="combined.js"></script>
-</head>
-<body>
-<div id="graphdiv" style="width:400px; height:300px;"></div>
-<script type="text/javascript">
-  g = new DateGraph(
-        document.getElementById("graphdiv"),  // containing div
-        function() {                // function or path to CSV file.
-          return "20080507,75\n" +
-                 "20080508,70\n" +
-                 "20080509,80\n";
-        },
-        [ "Temperature" ],          // names of data series
-        {}                          // additional options (see below)
-      );
-</script>
-</body>
-</html>
-
-
-
- -
- -

In order to keep this example self-contained, the second parameter is a function that returns CSV data. These lines must begin with a date in the form YYYYMMDD. In most applications, it makes more sense to include a CSV file instead. If the second parameter to the constructor is a string, it will be interpreted as the path to a CSV file. The DateGraph 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
-<html>
-<head>
-<script type="text/javascript" src="combined.js"></script>
-</head>
-<body>
-<div id="graphdiv" style="width:600px; height:300px;"></div>
-<script type="text/javascript">
-  g = new DateGraph(
-        document.getElementById("graphdiv"),
-        "temperatures.csv",  // path to CSV file
-        null,                // labels in top line of CSV file
-        {}
-      );
-</script>
-</body>
-</html>
-
-
-
- -
- -

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

- - + + + + +

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)',
+});
+
+
+ …makes this chart! +
+
+
+ -

These last two problems can be fixed by specifying the appropriate options in the fourth parameter to the DateGraph constructor. To set the number of days for a moving average, use the rollPeriod option. To set the range of the y-axis, use the valueRange option. Here's how it's done:

- - - - - - -
HTMLOutput
-<html>
-<head>
-<script type="text/javascript" src="combined.js"></script>
-</head>
-<body>
-<div id="graphdiv" style="width:600px; height:300px;"></div>
-<script type="text/javascript">
-  g = new DateGraph(
-        document.getElementById("graphdiv"),
-        "temperatures.csv", null,
-        { rollPeriod: 7,
-          valueRange: [25, 100]
-        }
-      );
-</script>
-</body>
-</html>
-
-
-
- -
- -

A rolling average can always be set using the text box in the lower left-hand corner of the graph.

- -

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, DateGraph 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
-<html>
-<head>
-<script type="text/javascript"
-  src="combined.js"></script>
-</head>
-<body>
-<div id="graphdiv" 
- style="width:800px; height:400px;"
- ></div>
-<script type="text/javascript">
-$ = document.getElementById;
-g = new DateGraph(
-  $("graphdiv"),
-  "twonormals.csv",
-  null,
-  { rollPeriod: 7,
-    errorBars: true,
-    valueRange: [50,125]
-  }
-);
-</script>
-</body>
-</html>
-
-
-
-
- -

Things to note here:

- - -

Other Options

-

These are the options that can be passed in through the fourth parameter of the DateGraph constructor.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameSample ValueDescription
rollPeriod7Number of days over which to average data. Discussed extensively above.
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)
errorBarsfalseDoes the data contain standard deviations? Setting this to true alters - the input format (see above). (default false)
strokeWidth2.0Width of the data lines. This can be used to increase the contrast or - some graphs. (default 1.0)
dateWindow[(new Date('2006-01-01')).valueOf(),
- (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).
minTickSize1 - The difference between ticks on the y-axis can be greater than or equal - to this, but no less. If you set it to 1, for instance, you'll never get - nonintegral gaps between ticks.
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).
padding{left: 40, right: 30,
top: 5, - bottom: 15}
Adds extra pixels of padding around the graph. Sometimes a dygraph - gets clipped by surrounding text (see the Demo at the top of this page). - Setting this property appropriately will fix this problem.
- -

Any options you specify also get passed on to PlotKit's Renderer class. DateGraph will override some of these (e.g. strokeColor), but others may be useful. The padding property is an example of this.

- -

Common Gotchas

-

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

- - - -

Created May 9, 2008 by Dan Vanderkam

- - +

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.

+ +
+
+

Features

+ + +

Getting Started

+

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

+ +

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

+
+ +
+

Quick Links

+ +
+ +
+ +