add categories
authorDan Vanderkam <dan@dygraphs.com>
Sun, 13 Mar 2011 20:50:47 +0000 (16:50 -0400)
committerDan Vanderkam <dan@dygraphs.com>
Sun, 13 Mar 2011 20:50:47 +0000 (16:50 -0400)
dygraph.js
generate-documentation.py

index db388f7..8e57615 100644 (file)
@@ -3619,326 +3619,395 @@ DateGraph = Dygraph;
 // <REMOVE_FOR_COMBINED>
 Dygraph.OPTIONS_REFERENCE =  // <JSON>
 {
-  "includeZero": {
-    "type": "boolean",
+  "xValueParser": {
+    "default": "parseFloat() or Date.parse()*",
+    "labels": ["CSV parsing"],
+    "type": "function(str) -> number",
+    "description": "A function which parses x-values (i.e. the dependent series). Must return a number, even when the values are dates. In this case, millis since epoch are used. This is used primarily for parsing CSV data. *=Dygraphs is slightly more accepting in the dates which it will parse. See code for details."
+  },
+  "stackedGraph": {
     "default": "false",
-    "description": "Usually, 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"
+    "labels": ["Data Line display"],
+    "type": "boolean",
+    "description": "If set, stack series on top of one another rather than drawing them independently."
   },
-  "rollPeriod": {
-    "type": "integer &gt;= 1",
+  "pointSize": {
     "default": "1",
-    "description": "Number of days over which to average data. Discussed extensively above."
+    "labels": ["Data Line display"],
+    "type": "integer",
+    "description": "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."
   },
-  "showRoller": {
-    "type": "boolean",
-    "default": "false",
-    "description": "If the rolling average period text box should be shown."
+  "annotationMouseOutHandler": {
+    "default": "",
+    "labels": ["Annotations"],
+    "type": "",
+    "description": ""
   },
-  "colors": {
-    "example": "['red', '#00FF00']",
-    "type": "array<string>",
-    "default": "(see description)",
-    "description": "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."
+  "labelsDivStyles": {
+    "default": "null",
+    "labels": ["Legend"],
+    "type": "{}",
+    "description": "Additional styles to apply to the currently-highlighted points div. For example, { 'font-weight': 'bold' } will make the labels bold."
   },
-  "fillGraph": {
-    "type": "boolean",
+  "drawPoints": {
     "default": "false",
-    "description": "Should the area underneath the graph be filled? This option is not compatible with error bars."
-  },
-  "visibility": {
-    "type": "Array of booleans",
-    "default": "[true, true, ...]",
-    "description": "Which series should initially be visible? Once the Dygraph has been constructed, you can access and modify the visibility of each series using the <code>visibility</code> and <code>setVisibility</code> methods."
-  },
-  "colorSaturation": {
-    "type": "0.0 - 1.0",
-    "default": "1.0",
-    "description": "If <strong>colors</strong> is not specified, saturation of the automatically-generated data series colors."
-  },
-  "colorValue": {
-    "type": "float (0.0 - 1.0)",
-    "default": "1.0",
-    "description": "If colors is not specified, value of the data series colors, as in hue/saturation/value. (0.0-1.0, default 0.5)"
+    "labels": ["Data Line display"],
+    "type": "boolean",
+    "description": "Draw 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."
   },
-  "clickCallback": {
-    "type": "function(e, date)",
-    "snippet": "function(e, date){<br>&nbsp;&nbsp;alert(date);<br>}",
-    "default": "null",
-    "description": "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."
+  "height": {
+    "default": "320",
+    "labels": ["Overall display"],
+    "type": "integer",
+    "description": "Height, in pixels, of the chart. If the container div has been explicitly sized, this will be ignored."
   },
   "zoomCallback": {
-    "type": "function(minDate, maxDate, yRanges)",
     "default": "null",
+    "labels": ["Callbacks"],
+    "type": "function(minDate, maxDate, yRanges)",
     "description": "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."
   },
-  "strokeWidth": {
-    "type": "integer",
-    "example": "0.5, 2.0",
-    "default": "1.0",
-    "description": "The width of the lines connecting data points. This can be used to increase the contrast or some graphs."
-  },
-  "dateWindow": {
-    "type": "Array of two Dates or numbers",
-    "example": "[<br>&nbsp;&nbsp;Date.parse('2006-01-01'),<br>&nbsp;&nbsp;(new Date()).valueOf()<br>]",
-    "default": "Full range of the input is shown",
-    "description": "Initially zoom in on a section of the graph. Is of the form [earliest, latest], where earliest/latest are milliseconds since epoch. If the data for the x-axis is numeric, the values in dateWindow must also be numbers."
+  "pointClickCallback": {
+    "default": "",
+    "labels": ["Callbacks", "Interactive Elements"],
+    "type": "",
+    "description": ""
   },
-  "valueRange": {
-    "type": "Array of two numbers",
-    "example": "[10, 110]",
-    "default": "Full range of the input is shown",
-    "description": "Explicitly set the vertical range of the graph to [low, high]."
+  "colors": {
+    "default": "(see description)",
+    "labels": ["Data Series Colors"],
+    "type": "array<string>",
+    "example": "['red', '#00FF00']",
+    "description": "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."
   },
-  "labelsSeparateLines": {
-    "type": "boolean",
+  "connectSeparatedPoints": {
     "default": "false",
-    "description": "Put <code>&lt;br/&gt;</code> between lines in the label string. Often used in conjunction with <strong>labelsDiv</strong>."
+    "labels": ["Data Line display"],
+    "type": "boolean",
+    "description": "Usually, when Dygraphs encounters a missing value in a data series, it interprets this as a gap and draws it as such. If, instead, the missing values represents an x-value for which only a different series has data, then you'll want to connect the dots by setting this to true. To explicitly include a gap with this option set, use a value of NaN."
   },
-  "labelsDiv": {
-    "type": "DOM element or string",
-    "example": "<code style='font-size: small'>document.getElementById('foo')</code>or<code>'foo'",
+  "highlightCallback": {
     "default": "null",
-    "description": "Show data labels in an external div, rather than on the graph.  This value can either be a div element or a div id."
-  },
-  "labelsShowZeroValues": {
-    "type": "boolean",
-    "default": "true",
-    "description": "Show zero value labels in the labelsDiv."
+    "labels": ["Callbacks"],
+    "type": "function(event, x, points,row)",
+    "description": "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: <code>[ {name: 'series', yval: y-value}, &hellip; ]</code>"
   },
-  "labelsKMB": {
-    "type": "boolean",
+  "includeZero": {
     "default": "false",
-    "description": "Show K/M/B for thousands/millions/billions on y-axis."
-  },
-  "labelsKMG2": {
+    "labels": ["Axis display"],
     "type": "boolean",
-    "default": "false",
-    "description": "Show k/M/G for kilo/Mega/Giga on y-axis. This is different than <code>labelsKMB</code> in that it uses base 2, not 10."
+    "description": "Usually, 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"
   },
-  "labelsDivWidth": {
-    "type": "integer",
-    "default": "250",
-    "description": "Width (in pixels) of the div which shows information on the currently-highlighted points."
+  "rollPeriod": {
+    "default": "1",
+    "labels": ["Error Bars", "Rolling Averages"],
+    "type": "integer &gt;= 1",
+    "description": "Number of days over which to average data. Discussed extensively above."
   },
-  "labelsDivStyles": {
-    "type": "{}",
+  "unhighlightCallback": {
     "default": "null",
-    "description": "Additional styles to apply to the currently-highlighted points div. For example, { 'font-weight': 'bold' } will make the labels bold."
+    "labels": ["Callbacks"],
+    "type": "function(event)",
+    "description": "When 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."
   },
-  "highlightCircleSize": {
-    "type": "integer",
-    "default": "3",
-    "description": "The size in pixels of the dot drawn over highlighted points."
+  "axisTickSize": {
+    "default": "3.0",
+    "labels": ["Axis display"],
+    "type": "number",
+    "description": "The size of the line to display next to each tick mark on x- or y-axes."
   },
-  "drawPoints": {
-    "type": "boolean",
+  "labelsSeparateLines": {
     "default": "false",
-    "description": "Draw 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."
-  },
-  "pointSize": {
-    "type": "integer",
-    "default": "1",
-    "description": "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."
+    "labels": ["Legend"],
+    "type": "boolean",
+    "description": "Put <code>&lt;br/&gt;</code> between lines in the label string. Often used in conjunction with <strong>labelsDiv</strong>."
   },
-  "pixelsPerXLabel": {
-    "type": "integer",
-    "default": "60",
-    "description": "Number of pixels to require between each x- and y-label. Larger values will yield a sparser axis with fewer ticks."
+  "xValueFormatter": {
+    "default": "(Round to 2 decimal places)",
+    "labels": ["Axis display"],
+    "type": "function(x)",
+    "description": "Function to provide a custom display format for the X value for mouseover."
   },
   "pixelsPerYLabel": {
-    "type": "integer",
     "default": "30",
+    "labels": ["Axis display", "Grid"],
+    "type": "integer",
     "description": "Number of pixels to require between each x- and y-label. Larger values will yield a sparser axis with fewer ticks."
   },
-  "xAxisLabelWidth": {
-    "type": "integer",
-    "default": "50",
-    "description": "Width, in pixels, of the x-axis labels."
+  "annotationMouseOverHandler": {
+    "default": "",
+    "labels": ["Annotations"],
+    "type": "",
+    "description": ""
   },
-  "yAxisLabelWidth": {
-    "type": "integer",
-    "default": "50",
-    "description": "Width, in pixels, of the y-axis labels."
+  "drawCallback": {
+    "default": "null",
+    "labels": ["Callbacks"],
+    "type": "function(dygraph, is_initial)",
+    "description": "When 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."
+  },
+  "labelsKMG2": {
+    "default": "false",
+    "labels": ["Value display/formatting"],
+    "type": "boolean",
+    "description": "Show k/M/G for kilo/Mega/Giga on y-axis. This is different than <code>labelsKMB</code> in that it uses base 2, not 10."
+  },
+  "delimiter": {
+    "default": ",",
+    "labels": ["CSV parsing"],
+    "type": "string",
+    "description": "The delimiter to look for when separating fields of a CSV file. Setting this to a tab is not usually necessary, since tab-delimited data is auto-detected."
   },
   "axisLabelFontSize": {
-    "type": "integer",
     "default": "14",
+    "labels": ["Axis display"],
+    "type": "integer",
     "description": "Size of the font (in pixels) to use in the axis labels, both x- and y-axis."
   },
-  "xAxisLabelFormatter": {
-    "type": "function(date, granularity)",
-    "default": "Dygraph.dateAxisFormatter",
-    "description": "Function to call to format values along the x axis."
+  "underlayCallback": {
+    "default": "null",
+    "labels": ["Callbacks"],
+    "type": "function(canvas, area, dygraph)",
+    "description": "When set, this callback gets called before the chart is drawn. It details on how to use this."
   },
-  "yAxisLabelFormatter": {
-    "type": "function(x)",
-    "default": "yValueFormatter",
-    "description": "Function used to format values along the Y axis. By default it uses the same as the <code>yValueFormatter</code> unless specified."
+  "width": {
+    "default": "480",
+    "labels": ["Overall display"],
+    "type": "integer",
+    "description": "Width, in pixels, of the chart. If the container div has been explicitly sized, this will be ignored."
   },
-  "rightGap": {
+  "interactionModel": {
+    "default": "...",
+    "labels": ["Interactive Elements"],
+    "type": "Object",
+    "description": "TODO(konigsberg): document this"
+  },
+  "xTicker": {
+    "default": "Dygraph.dateTicker or Dygraph.numericTicks",
+    "labels": ["Axis display"],
+    "type": "function(min, max, dygraph) -> [{v: ..., label: ...}, ...]",
+    "description": "This lets you specify an arbitrary function to generate tick marks on an axis. The tick marks are an array of (value, label) pairs. The built-in functions go to great lengths to choose good tick marks so, if you set this option, you'll most likely want to call one of them and modify the result."
+  },
+  "xAxisLabelWidth": {
+    "default": "50",
+    "labels": ["Axis display"],
     "type": "integer",
-    "default": "5",
-    "description": "Number of pixels to leave blank at the right edge of the Dygraph. This makes it easier to highlight the right-most data point."
+    "description": "Width, in pixels, of the x-axis labels."
   },
-  "errorBars": {
+  "showLabelsOnHighlight": {
+    "default": "true",
+    "labels": ["Interactive Elements", "Legend"],
     "type": "boolean",
-    "default": "false",
-    "description": "Does the data contain standard deviations? Setting this to true alters the input format (see above)."
+    "description": "Whether to show the legend upon mouseover."
   },
-  "sigma": {
+  "axis": {
+    "default": "(none)",
+    "labels": ["Axis display"],
+    "type": "string or object",
+    "description": "Set to either an object ({}) filled with options for this axis or to the name of an existing data series with its own axis to re-use that axis. See tests for usage."
+  },
+  "pixelsPerXLabel": {
+    "default": "60",
+    "labels": ["Axis display", "Grid"],
     "type": "integer",
-    "default": "2.0",
-    "description": "When errorBars is set, shade this many standard deviations above/below each point."
+    "description": "Number of pixels to require between each x- and y-label. Larger values will yield a sparser axis with fewer ticks."
+  },
+  "labelsDiv": {
+    "default": "null",
+    "labels": ["Legend"],
+    "type": "DOM element or string",
+    "example": "<code style='font-size: small'>document.getElementById('foo')</code>or<code>'foo'",
+    "description": "Show data labels in an external div, rather than on the graph.  This value can either be a div element or a div id."
   },
   "fractions": {
-    "type": "boolean",
     "default": "false",
+    "labels": ["CSV parsing", "Error Bars"],
+    "type": "boolean",
     "description": "When 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)."
   },
-  "wilsonInterval": {
+  "logscale": {
+    "default": "false",
+    "labels": ["Axis display"],
     "type": "boolean",
+    "description": "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.\n\nNot compatible with showZero, and ignores connectSeparatedPoints. Also, showing log scale with valueRanges that are less than zero will result in an unviewable graph."
+  },
+  "strokeWidth": {
+    "default": "1.0",
+    "labels": ["Data Line display"],
+    "type": "integer",
+    "example": "0.5, 2.0",
+    "description": "The width of the lines connecting data points. This can be used to increase the contrast or some graphs."
+  },
+  "wilsonInterval": {
     "default": "true",
+    "labels": ["Error Bars"],
+    "type": "boolean",
     "description": "Use 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."
   },
-  "customBars": {
-    "type": "boolean",
+  "fillGraph": {
     "default": "false",
-    "description": "When 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."
+    "labels": ["Data Line display"],
+    "type": "boolean",
+    "description": "Should the area underneath the graph be filled? This option is not compatible with error bars."
   },
-  "drawCallback": {
-    "type": "function(dygraph, is_initial)",
-    "default": "null",
-    "description": "When 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."
+  "highlightCircleSize": {
+    "default": "3",
+    "labels": ["Interactive Elements"],
+    "type": "integer",
+    "description": "The size in pixels of the dot drawn over highlighted points."
   },
   "gridLineColor": {
-    "type": "red, blue",
     "default": "rgb(128,128,128)",
+    "labels": ["Grid"],
+    "type": "red, blue",
     "description": "The color of the gridlines."
   },
-  "highlightCallback": {
-    "type": "function(event, x, points,row)",
-    "default": "null",
-    "description": "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: <code>[ {name: 'series', yval: y-value}, &hellip; ]</code>"
-  },
-  "unhighlightCallback": {
-    "type": "function(event)",
-    "default": "null",
-    "description": "When 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."
+  "visibility": {
+    "default": "[true, true, ...]",
+    "labels": ["Data Line display"],
+    "type": "Array of booleans",
+    "description": "Which series should initially be visible? Once the Dygraph has been constructed, you can access and modify the visibility of each series using the <code>visibility</code> and <code>setVisibility</code> methods."
   },
-  "underlayCallback": {
-    "type": "function(canvas, area, dygraph)",
-    "default": "null",
-    "description": "When set, this callback gets called before the chart is drawn. It details on how to use this."
+  "valueRange": {
+    "default": "Full range of the input is shown",
+    "labels": ["Axis display"],
+    "type": "Array of two numbers",
+    "example": "[10, 110]",
+    "description": "Explicitly set the vertical range of the graph to [low, high]."
   },
-  "width": {
+  "labelsDivWidth": {
+    "default": "250",
+    "labels": ["Legend"],
     "type": "integer",
-    "default": "480",
-    "description": "Width, in pixels, of the chart. If the container div has been explicitly sized, this will be ignored."
+    "description": "Width (in pixels) of the div which shows information on the currently-highlighted points."
   },
-  "height": {
+  "colorSaturation": {
+    "default": "1.0",
+    "labels": ["Data Series Colors"],
+    "type": "0.0 - 1.0",
+    "description": "If <strong>colors</strong> is not specified, saturation of the automatically-generated data series colors."
+  },
+  "yAxisLabelWidth": {
+    "default": "50",
+    "labels": ["Axis display"],
     "type": "integer",
-    "default": "320",
-    "description": "Height, in pixels, of the chart. If the container div has been explicitly sized, this will be ignored."
+    "description": "Width, in pixels, of the y-axis labels."
   },
-  "stepPlot": {
+  "hideOverlayOnMouseOut": {
+    "default": "true",
+    "labels": ["Interactive Elements", "Legend"],
     "type": "boolean",
-    "default": "false",
-    "description": "When set, display the graph as a step plot instead of a line plot."
-  },
-  "xValueFormatter": {
-    "type": "function(x)",
-    "default": "(Round to 2 decimal places)",
-    "description": "Function to provide a custom display format for the X value for mouseover."
+    "description": "Whether to hide the legend when the mouse leaves the chart area."
   },
   "yValueFormatter": {
-    "type": "function(x)",
     "default": "(Round to 2 decimal places)",
+    "labels": ["Axis display"],
+    "type": "function(x)",
     "description": "Function to provide a custom display format for the Y value for mouseover."
   },
-  "avoidMinZero": {
+  "legend": {
+    "default": "onmouseover",
+    "labels": ["Legend"],
+    "type": "string",
+    "description": "When to display the legend. By default, it only appears when a user mouses over the chart. Set it to \"always\" to always display a legend of some sort."
+  },
+  "labelsShowZeroValues": {
+    "default": "true",
+    "labels": ["Legend"],
     "type": "boolean",
+    "description": "Show zero value labels in the labelsDiv."
+  },
+  "stepPlot": {
     "default": "false",
-    "description": "When set, the heuristic that fixes the Y axis at zero for a data set with the minimum Y value of zero is disabled. \nThis is particularly useful for data sets that contain many zero values, especially for step plots which may otherwise have lines not visible running along the bottom axis."
+    "labels": ["Data Line display"],
+    "type": "boolean",
+    "description": "When set, display the graph as a step plot instead of a line plot."
   },
-  "logscale": {
+  "labelsKMB": {
+    "default": "false",
+    "labels": ["Value display/formatting"],
     "type": "boolean",
+    "description": "Show K/M/B for thousands/millions/billions on y-axis."
+  },
+  "rightGap": {
+    "default": "5",
+    "labels": ["Overall display"],
+    "type": "integer",
+    "description": "Number of pixels to leave blank at the right edge of the Dygraph. This makes it easier to highlight the right-most data point."
+  },
+  "avoidMinZero": {
     "default": "false",
-    "description": "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.\n\nNot compatible with showZero, and ignores connectSeparatedPoints. Also, showing log scale with valueRanges that are less than zero will result in an unviewable graph."
+    "labels": ["Axis display"],
+    "type": "boolean",
+    "description": "When set, the heuristic that fixes the Y axis at zero for a data set with the minimum Y value of zero is disabled. \nThis is particularly useful for data sets that contain many zero values, especially for step plots which may otherwise have lines not visible running along the bottom axis."
+  },
+  "xAxisLabelFormatter": {
+    "default": "Dygraph.dateAxisFormatter",
+    "labels": ["Axis display", "Value display/formatting"],
+    "type": "function(date, granularity)",
+    "description": "Function to call to format values along the x axis."
+  },
+  "clickCallback": {
+    "snippet": "function(e, date){<br>&nbsp;&nbsp;alert(date);<br>}",
+    "default": "null",
+    "labels": ["Callbacks"],
+    "type": "function(e, date)",
+    "description": "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."
+  },
+  "yAxisLabelFormatter": {
+    "default": "yValueFormatter",
+    "labels": ["Axis display", "Value display/formatting"],
+    "type": "function(x)",
+    "description": "Function used to format values along the Y axis. By default it uses the same as the <code>yValueFormatter</code> unless specified."
   },
   "labels": {
-    "type": "array<string>",
     "default": "[\"X\", \"Y1\", \"Y2\", ...]*",
+    "labels": ["Legend"],
+    "type": "array<string>",
     "description": "A name for each data series, including the independent (X) series. For CSV files and DataTable objections, this is determined by context. For raw data, this must be specified. If it is not, default values are supplied and a warning is logged."
   },
-  "interactionModel": {
-    "type": "Object",
-    "default": "...",
-    "description": "TODO(konigsberg): document this"
-  },
-  "delimiter": {
-    "type": "string",
-    "default": ",",
-    "description": "The delimiter to look for when separating fields of a CSV file. Setting this to a tab is not usually necessary, since tab-delimited data is auto-detected."
-  },
-  "xValueParser": {
-    "type": "function(str) -> number",
-    "default": "parseFloat() or Date.parse()*",
-    "description": "A function which parses x-values (i.e. the dependent series). Must return a number, even when the values are dates. In this case, millis since epoch are used. This is used primarily for parsing CSV data. *=Dygraphs is slightly more accepting in the dates which it will parse. See code for details."
+  "dateWindow": {
+    "default": "Full range of the input is shown",
+    "labels": ["Axis display"],
+    "type": "Array of two Dates or numbers",
+    "example": "[<br>&nbsp;&nbsp;Date.parse('2006-01-01'),<br>&nbsp;&nbsp;(new Date()).valueOf()<br>]",
+    "description": "Initially zoom in on a section of the graph. Is of the form [earliest, latest], where earliest/latest are milliseconds since epoch. If the data for the x-axis is numeric, the values in dateWindow must also be numbers."
   },
-  "axisTickSize": {
-    "type": "number",
-    "default": "3.0",
-    "description": "The size of the line to display next to each tick mark on x- or y-axes."
+  "showRoller": {
+    "default": "false",
+    "labels": ["Interactive Elements", "Rolling Averages"],
+    "type": "boolean",
+    "description": "If the rolling average period text box should be shown."
   },
-  "axis": {
-    "type": "string or object",
-    "default": "(none)",
-    "description": "Set to either an object ({}) filled with options for this axis or to the name of an existing data series with its own axis to re-use that axis. See tests for usage."
+  "sigma": {
+    "default": "2.0",
+    "labels": ["Error Bars"],
+    "type": "integer",
+    "description": "When errorBars is set, shade this many standard deviations above/below each point."
   },
-  "connectSeparatedPoints": {
-    "type": "boolean",
+  "customBars": {
     "default": "false",
-    "description": "Usually, when Dygraphs encounters a missing value in a data series, it interprets this as a gap and draws it as such. If, instead, the missing values represents an x-value for which only a different series has data, then you'll want to connect the dots by setting this to true. To explicitly include a gap with this option set, use a value of NaN."
-  },
-  "stackedGraph": {
+    "labels": ["CSV parsing", "Error Bars"],
     "type": "boolean",
-    "default": "false",
-    "description": "If set, stack series on top of one another rather than drawing them independently."
-  },
-  "xTicker": {
-    "type": "function(min, max, dygraph) -> [{v: ..., label: ...}, ...]",
-    "default": "Dygraph.dateTicker or Dygraph.numericTicks",
-    "description": "This lets you specify an arbitrary function to generate tick marks on an axis. The tick marks are an array of (value, label) pairs. The built-in functions go to great lengths to choose good tick marks so, if you set this option, you'll most likely want to call one of them and modify the result."
+    "description": "When 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."
   },
-  "legend": {
-    "type": "string",
-    "default": "onmouseover",
-    "description": "When to display the legend. By default, it only appears when a user mouses over the chart. Set it to \"always\" to always display a legend of some sort."
+  "colorValue": {
+    "default": "1.0",
+    "labels": ["Data Series Colors"],
+    "type": "float (0.0 - 1.0)",
+    "description": "If colors is not specified, value of the data series colors, as in hue/saturation/value. (0.0-1.0, default 0.5)"
   },
-  "showLabelsOnHighlight": {
+  "errorBars": {
+    "default": "false",
+    "labels": ["CSV parsing", "Error Bars"],
     "type": "boolean",
-    "default": "true",
-    "description": "Whether to show the legend upon mouseover."
+    "description": "Does the data contain standard deviations? Setting this to true alters the input format (see above)."
   },
-  "hideOverlayOnMouseOut": {
+  "displayAnnotations": {
+    "default": "false",
+    "labels": ["Annotations"],
     "type": "boolean",
-    "default": "true",
-    "description": "Whether to hide the legend when the mouse leaves the chart area."
-  },
-  "pointClickCallback": {
-    "type": "",
-    "default": "",
-    "description": ""
-  },
-  "annotationMouseOverHandler": {
-    "type": "",
-    "default": "",
-    "description": ""
-  },
-  "annotationMouseOutHandler": {
-    "type": "",
-    "default": "",
-    "description": ""
+    "description": "Only applies when Dygraphs is used as a GViz chart. Causes string columns following a data series to be interpreted as annotations on points in that series. This is the same format used by Google's AnnotatedTimeLine chart."
   }
 }
 ;  // </JSON>
@@ -3950,6 +4019,24 @@ Dygraph.OPTIONS_REFERENCE =  // <JSON>
 (function() {
   var warn = function(msg) { if (console) console.warn(msg); };
   var flds = ['type', 'default', 'description'];
+  var valid_cats = [ 
+   'Annotations',
+   'Axis display',
+   'CSV parsing',
+   'Callbacks',
+   'Data Line display',
+   'Data Series Colors',
+   'Error Bars',
+   'Grid',
+   'Interactive Elements',
+   'Legend',
+   'Overall display',
+   'Rolling Averages',
+   'Value display/formatting'
+  ];
+  var cats = {};
+  for (var i = 0; i < valid_cats.length; i++) cats[valid_cats[i]] = true;
+
   for (var k in Dygraph.OPTIONS_REFERENCE) {
     if (!Dygraph.OPTIONS_REFERENCE.hasOwnProperty(k)) continue;
     var op = Dygraph.OPTIONS_REFERENCE[k];
@@ -3960,6 +4047,16 @@ Dygraph.OPTIONS_REFERENCE =  // <JSON>
         warn(k + '.' + flds[i] + ' must be of type string');
       }
     }
+    var labels = op['labels'];
+    if (typeof(labels) !== 'object') {
+      warn('Option "' + k + '" is missing a "labels": [...] option');
+      for (var i = 0; i < labels.length; i++) {
+        if (!cats.hasOwnProperty(labels[i])) {
+          warn('Option "' + k + '" has label "' + labels[i] +
+               '", which is invalid.');
+        }
+      }
+    }
   }
 })();
 // </REMOVE_FOR_COMBINED>
index e06c223..3c4d1fe 100755 (executable)
@@ -48,29 +48,63 @@ for test_file in glob.glob('tests/*.html'):
     if opt in docs and test_file not in docs[opt]['tests']:
       docs[opt]['tests'].append(test_file)
 
+# Extract a labels list.
+labels = []
+for nu, opt in docs.iteritems():
+  for label in opt['labels']:
+    if label not in labels:
+      labels.append(label)
+
+print """
+<html>
+<head>
+  <title>Dygraphs Options Reference</title>
+  <style type="text/css">
+    p.option {
+      padding-left: 25px;
+      max-width: 800px;
+    }
+  </style>
+</head>
+<body>
+"""
+
+print 'Options categories:\n'
+print '<ul>\n'
+for label in sorted(labels):
+  print '  <li><a href="#%s">%s</a>\n' % (label, label)
+print '</ul>\n\n'
+
 def name(f):
   """Takes 'tests/demo.html' -> 'demo'"""
   return f.replace('tests/', '').replace('.html', '')
 
-for opt_name in sorted(docs.keys()):
-  opt = docs[opt_name]
-  tests = opt['tests']
-  if not tests:
-    examples_html = '<font color=red>NONE</font>'
-  else:
-    examples_html = ' '.join(
-      '<a href="%s">%s</a>' % (f, name(f)) for f in tests)
+for label in sorted(labels):
+  print '<a name="%s"><h2>%s</h2>\n' % (label, label)
+
+  for opt_name in sorted(docs.keys()):
+    opt = docs[opt_name]
+    if label not in opt['labels']: continue
+    tests = opt['tests']
+    if not tests:
+      examples_html = '<font color=red>NONE</font>'
+    else:
+      examples_html = ' '.join(
+        '<a href="%s">%s</a>' % (f, name(f)) for f in tests)
+
+    print """
+  <p class='option'><b>%(name)s</b><br/>
+  %(desc)s<br/>
+  <i>Type: %(type)s<br/>
+  Default: %(default)s</i><br/>
+  Examples: %(examples_html)s<br/>
+  <br/>
+  """ % { 'name': opt_name,
+          'type': opt['type'],
+          'default': opt['default'],
+          'desc': opt['description'],
+          'examples_html': examples_html}
 
-  print """
-<p><b>%(name)s</b><br/>
-%(desc)s<br/>
-<i>Type: %(type)s<br/>
-Default: %(default)s</i><br/>
-Examples: %(examples_html)s<br/>
-<br/>
-""" % { 'name': opt_name,
-        'type': opt['type'],
-        'default': opt['default'],
-        'desc': opt['description'],
-        'examples_html': examples_html}
 
+# This page was super-helpful:
+# http://jsbeautifier.org/