X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=docs%2Findex.html;h=18208162bdf651275329d57baf21ec563c4ce6ad;hb=21ff17d117faed5a1654c4b5032c4a10d89fcd5a;hp=1366f9d9fac1f5d345900f4654e0ffa1380f737d;hpb=52e5492a368655b00931f85215fc9558a21d9226;p=dygraphs.git diff --git a/docs/index.html b/docs/index.html index 1366f9d..1820816 100644 --- a/docs/index.html +++ b/docs/index.html @@ -27,7 +27,7 @@ code.google.com/p/dygraphs

-

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

+

The dygraphs JavaScript library produces produces interactive, zoomable charts of time series.

Features

Caveats

@@ -58,9 +59,10 @@ g = new DateGraph( document.getElementById("demodiv"), function() { + var zp = function(x) { if (x < 10) return "0"+x; else return x; }; var r = "date,parabola,line,another line,sine wave\n"; for (var i=1; i<=31; i++) { - r += "200610" + i; + r += "200610" + zp(i); r += "," + 10*(i*(31-i)); r += "," + 10*(8*i); r += "," + 10*(250 - 8*i); @@ -79,14 +81,16 @@ "rgb(255,100,100)", "#00DD55", "rgba(50,50,200,0.4)"], - padding: {left: 40, right: 30, top: 15, bottom: 15} + padding: {left: 40, right: 30, top: 15, bottom: 15}, } ); +

For more demos, browse the dygraph tests directory.

+

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: +

The dygraphs 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
@@ -103,39 +107,33 @@ <script type="text/javascript" src="combined.js"></script> </head> <body> -<div id="graphdiv" style="width:400px; height:300px;"></div> +<div id="graphdiv"></div> <script type="text/javascript"> - g = new DateGraph( + g = new Dygraph( 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) + "Date,Temperature\n" + // CSV or path to a CSV file. + "20080507,75\n" + + "20080508,70\n" + + "20080509,80\n", ); </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)

+

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

@@ -150,11 +148,10 @@ <body> <div id="graphdiv" style="width:600px; height:300px;"></div> <script type="text/javascript"> - g = new DateGraph( + g = new Dygraph( document.getElementById("graphdiv"), "temperatures.csv", // path to CSV file - null, // labels in top line of CSV file - {} + {} // additional options ); </script> </body> @@ -163,9 +160,9 @@
HTML
@@ -173,14 +170,15 @@

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

-

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:

+

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:

@@ -195,11 +193,11 @@ <body> <div id="graphdiv" style="width:600px; height:300px;"></div> <script type="text/javascript"> - g = new DateGraph( + g = new Dygraph( document.getElementById("graphdiv"), - "temperatures.csv", null, + "temperatures.csv", { rollPeriod: 7, - valueRange: [25, 100] + showRoller: true, } ); </script> @@ -209,20 +207,20 @@
HTML
-

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

+

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

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

+

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.

@@ -243,11 +241,11 @@ ></div> <script type="text/javascript"> $ = document.getElementById; -g = new DateGraph( +g = new Dygraph( $("graphdiv"), "twonormals.csv", - null, { rollPeriod: 7, + showRoller: true, errorBars: true, valueRange: [50,125] } @@ -260,11 +258,11 @@ g = new DateGraph(
+ + +

Other Options

-

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

+

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.
rollPeriod 7 Number 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.
colorSaturation 1.0 If colors is not specified, saturation of the automatically-generated data series colors. (0.0-1.0, default: 1.0)
colorValue 0.5 If colors is not specified, value of the data series colors, as in hue/saturation/value. (0.0-1.0, default 0.5)
clickCallback function(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)
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.
strokeWidth 2.0 Width 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(),
+
[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).
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.
labelsSeparateLines true Put <br/> between lines in the label string. Often used in conjunction with labelsDiv. (default false)
labelsDiv document.getElementById('foo') Show data labels in an external div, rather than on the graph. (default null)
labelsKMB true Show 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).
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.
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.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.
-

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.

+

Any options you specify also get passed on to PlotKit's Renderer class. dygraphs 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 @@ -379,28 +523,33 @@ dygraphs library.

href="http://www.getfirebug.com/">Firebug.
  • Make sure your CSV files are in the correct format. They must be of the - form YYYYMMDD,series1,series2,.... If you're specifying the - names of each data series in the CSV file itself, make sure that you pass - null as the third parameter to the DateGraph constructor to let - the library know that. And if you set the errorBars property, - make sure you alternate data series and standard deviations.
  • + 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 DateGraph, put it inside a table with "align=center" + want to center a Dygraph, put it inside a table with "align=center" set.
  • -
  • If you specify the colors property or name the data series - using the third parameter of the DateGraph constructor, make sure the number - of data series agree in all places: colors, third parameter and - in each line of the CSV file itself.
  • -
  • 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.
  • +

    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

    + + + +