strip options reference from combined
[dygraphs.git] / dygraph.js
index 656d7a8..7c7cf6e 100644 (file)
@@ -187,6 +187,9 @@ Dygraph.DEFAULT_ATTRS = {
   stackedGraph: false,
   hideOverlayOnMouseOut: true,
 
+  // TODO(danvk): support 'onmouseover' and 'never', and remove synonyms.
+  legend: 'onmouseover',  // the only relevant value at the moment is 'always'.
+
   stepPlot: false,
   avoidMinZero: false,
 
@@ -338,6 +341,16 @@ Dygraph.prototype.toString = function() {
 }
 
 Dygraph.prototype.attr_ = function(name, seriesName) {
+// <REMOVE_FOR_COMBINED>
+  if (typeof(Dygraph.OPTIONS_REFERENCE) === 'undefined') {
+    this.error('Must include options reference JS for testing');
+  } else if (!Dygraph.OPTIONS_REFERENCE.hasOwnProperty(name)) {
+    this.error('Dygraphs is using property ' + name + ', which has no entry ' +
+               'in the Dygraphs.OPTIONS_REFERENCE listing.');
+    // Only log this error once.
+    Dygraph.OPTIONS_REFERENCE[name] = true;
+  }
+// </REMOVE_FOR_COMBINED>
   if (seriesName &&
       typeof(this.user_attrs_[seriesName]) != 'undefined' &&
       this.user_attrs_[seriesName] != null &&
@@ -1553,6 +1566,52 @@ Dygraph.prototype.idxToRow_ = function(idx) {
   return -1;
 };
 
+// TODO(danvk): rename this function to something like 'isNonZeroNan'.
+Dygraph.isOK = function(x) {
+  return x && !isNaN(x);
+};
+
+Dygraph.prototype.generateLegendHTML_ = function(x, sel_points) {
+  // If no points are selected, we display a default legend. Traditionally,
+  // this has been blank. But a better default would be a conventional legend,
+  // which provides essential information for a non-interactive chart.
+  if (typeof(x) === 'undefined') {
+    if (this.attr_('legend') != 'always') return '';
+
+    var sepLines = this.attr_('labelsSeparateLines');
+    var labels = this.attr_('labels');
+    var html = '';
+    for (var i = 1; i < labels.length; i++) {
+      var c = new RGBColor(this.plotter_.colors[labels[i]]);
+      if (i > 1) html += (sepLines ? '<br/>' : ' ');
+      html += "<b><font color='" + c.toHex() + "'>&mdash;" + labels[i] +
+        "</font></b>";
+    }
+    return html;
+  }
+
+  var displayDigits = this.numXDigits_ + this.numExtraDigits_;
+  var html = this.attr_('xValueFormatter')(x, displayDigits) + ":";
+
+  var fmtFunc = this.attr_('yValueFormatter');
+  var showZeros = this.attr_("labelsShowZeroValues");
+  var sepLines = this.attr_("labelsSeparateLines");
+  for (var i = 0; i < this.selPoints_.length; i++) {
+    var pt = this.selPoints_[i];
+    if (pt.yval == 0 && !showZeros) continue;
+    if (!Dygraph.isOK(pt.canvasy)) continue;
+    if (sepLines) html += "<br/>";
+
+    var c = new RGBColor(this.plotter_.colors[pt.name]);
+    var yval = fmtFunc(pt.yval, displayDigits);
+    // TODO(danvk): use a template string here and make it an attribute.
+    html += " <b><font color='" + c.toHex() + "'>"
+      + pt.name + "</font></b>:"
+      + yval;
+  }
+  return html;
+};
+
 /**
  * Draw dots over the selectied points in the data series. This function
  * takes care of cleanup of previously-drawn dots.
@@ -1574,46 +1633,24 @@ Dygraph.prototype.updateSelection_ = function() {
                   2 * maxCircleSize + 2, this.height_);
   }
 
-  var isOK = function(x) { return x && !isNaN(x); };
-
   if (this.selPoints_.length > 0) {
-    var canvasx = this.selPoints_[0].canvasx;
-
     // Set the status message to indicate the selected point(s)
-    var replace = this.attr_('xValueFormatter')(
-          this.lastx_, this.numXDigits_ + this.numExtraDigits_) + ":";
-    var fmtFunc = this.attr_('yValueFormatter');
-    var clen = this.colors_.length;
-
     if (this.attr_('showLabelsOnHighlight')) {
-      // Set the status message to indicate the selected point(s)
-      for (var i = 0; i < this.selPoints_.length; i++) {
-        if (!this.attr_("labelsShowZeroValues") && this.selPoints_[i].yval == 0) continue;
-        if (!isOK(this.selPoints_[i].canvasy)) continue;
-        if (this.attr_("labelsSeparateLines")) {
-          replace += "<br/>";
-        }
-        var point = this.selPoints_[i];
-        var c = new RGBColor(this.plotter_.colors[point.name]);
-        var yval = fmtFunc(point.yval, this.numYDigits_ + this.numExtraDigits_);
-        replace += " <b><font color='" + c.toHex() + "'>"
-                + point.name + "</font></b>:"
-                + yval;
-      }
-
-      this.attr_("labelsDiv").innerHTML = replace;
+      var html = this.generateLegendHTML_(this.lastx_, this.selPoints_);
+      this.attr_("labelsDiv").innerHTML = html;
     }
 
     // Draw colored circles over the center of each selected point
+    var canvasx = this.selPoints_[0].canvasx;
     ctx.save();
     for (var i = 0; i < this.selPoints_.length; i++) {
-      if (!isOK(this.selPoints_[i].canvasy)) continue;
-      var circleSize =
-        this.attr_('highlightCircleSize', this.selPoints_[i].name);
+      var pt = this.selPoints_[i];
+      if (!Dygraph.isOK(pt.canvasy)) continue;
+
+      var circleSize = this.attr_('highlightCircleSize', pt.name);
       ctx.beginPath();
-      ctx.fillStyle = this.plotter_.colors[this.selPoints_[i].name];
-      ctx.arc(canvasx, this.selPoints_[i].canvasy, circleSize,
-              0, 2 * Math.PI, false);
+      ctx.fillStyle = this.plotter_.colors[pt.name];
+      ctx.arc(canvasx, pt.canvasy, circleSize, 0, 2 * Math.PI, false);
       ctx.fill();
     }
     ctx.restore();
@@ -1685,7 +1722,7 @@ Dygraph.prototype.clearSelection = function() {
   // Get rid of the overlay data
   var ctx = this.canvas_.getContext("2d");
   ctx.clearRect(0, 0, this.width_, this.height_);
-  this.attr_("labelsDiv").innerHTML = "";
+  this.attr_('labelsDiv').innerHTML = this.generateLegendHTML_();
   this.selPoints_ = [];
   this.lastx_ = -1;
 }
@@ -2470,6 +2507,11 @@ Dygraph.prototype.drawGraph_ = function() {
   this.canvas_.getContext('2d').clearRect(0, 0, this.canvas_.width,
                                           this.canvas_.height);
 
+  if (is_initial_draw) {
+    // Generate a static legend before any particular point is selected.
+    this.attr_('labelsDiv').innerHTML = this.generateLegendHTML_();
+  }
+
   if (this.attr_("drawCallback") !== null) {
     this.attr_("drawCallback")(this, is_initial_draw);
   }
@@ -2870,7 +2912,7 @@ Dygraph.prototype.detectTypeFromString_ = function(str) {
     this.attrs_.xTicker = Dygraph.dateTicker;
     this.attrs_.xAxisLabelFormatter = Dygraph.dateAxisFormatter;
   } else {
-    this.attrs_.xValueFormatter = this.attrs_.xValueFormatter;
+    this.attrs_.xValueFormatter = this.attrs_.yValueFormatter;
     this.attrs_.xValueParser = function(x) { return parseFloat(x); };
     this.attrs_.xTicker = Dygraph.numericTicks;
     this.attrs_.xAxisLabelFormatter = this.attrs_.xValueFormatter;
@@ -2878,6 +2920,40 @@ Dygraph.prototype.detectTypeFromString_ = function(str) {
 };
 
 /**
+ * Parses the value as a floating point number. This is like the parseFloat()
+ * built-in, but with a few differences:
+ * - the empty string is parsed as null, rather than NaN.
+ * - if the string cannot be parsed at all, an error is logged.
+ * If the string can't be parsed, this method returns null.
+ * @param {String} x The string to be parsed
+ * @param {Number} opt_line_no The line number from which the string comes.
+ * @param {String} opt_line The text of the line from which the string comes.
+ * @private
+ */
+
+// Parse the x as a float or return null if it's not a number.
+Dygraph.prototype.parseFloat_ = function(x, opt_line_no, opt_line) {
+  var val = parseFloat(x);
+  if (!isNaN(val)) return val;
+
+  // Try to figure out what happeend.
+  // If the value is the empty string, parse it as null.
+  if (/^ *$/.test(x)) return null;
+
+  // If it was actually "NaN", return it as NaN.
+  if (/^ *nan *$/i.test(x)) return NaN;
+
+  // Looks like a parsing error.
+  var msg = "Unable to parse '" + x + "' as a number";
+  if (opt_line !== null && opt_line_no !== null) {
+    msg += " on line " + (1+opt_line_no) + " ('" + opt_line + "') of CSV.";
+  }
+  this.error(msg);
+
+  return null;
+};
+
+/**
  * Parses a string in a special csv format.  We expect a csv file where each
  * line is a date point, and the first field in each line is the date string.
  * We also expect that all remaining fields represent series.
@@ -2909,13 +2985,7 @@ Dygraph.prototype.parseCSV_ = function(data) {
     start = 1;
     this.attrs_.labels = lines[0].split(delim);
   }
-
-  // Parse the x as a float or return null if it's not a number.
-  var parseFloatOrNull = function(x) {
-    var val = parseFloat(x);
-    // isFinite() returns false for NaN and +/-Infinity.
-    return isFinite(val) ? val : null;
-  };
+  var line_no = 0;
 
   var xParser;
   var defaultParserSet = false;  // attempt to auto-detect x value type
@@ -2923,6 +2993,7 @@ Dygraph.prototype.parseCSV_ = function(data) {
   var outOfOrder = false;
   for (var i = start; i < lines.length; i++) {
     var line = lines[i];
+    line_no = i;
     if (line.length == 0) continue;  // skip blank lines
     if (line[0] == '#') continue;    // skip comment lines
     var inFields = line.split(delim);
@@ -2941,37 +3012,68 @@ Dygraph.prototype.parseCSV_ = function(data) {
       for (var j = 1; j < inFields.length; j++) {
         // TODO(danvk): figure out an appropriate way to flag parse errors.
         var vals = inFields[j].split("/");
-        fields[j] = [parseFloatOrNull(vals[0]), parseFloatOrNull(vals[1])];
+        if (vals.length != 2) {
+          this.error('Expected fractional "num/den" values in CSV data ' +
+                     "but found a value '" + inFields[j] + "' on line " +
+                     (1 + i) + " ('" + line + "') which is not of this form.");
+          fields[j] = [0, 0];
+        } else {
+          fields[j] = [this.parseFloat_(vals[0], i, line),
+                       this.parseFloat_(vals[1], i, line)];
+        }
       }
     } else if (this.attr_("errorBars")) {
       // If there are error bars, values are (value, stddev) pairs
-      for (var j = 1; j < inFields.length; j += 2)
-        fields[(j + 1) / 2] = [parseFloatOrNull(inFields[j]),
-                               parseFloatOrNull(inFields[j + 1])];
+      if (inFields.length % 2 != 1) {
+        this.error('Expected alternating (value, stdev.) pairs in CSV data ' +
+                   'but line ' + (1 + i) + ' has an odd number of values (' +
+                   (inFields.length - 1) + "): '" + line + "'");
+      }
+      for (var j = 1; j < inFields.length; j += 2) {
+        fields[(j + 1) / 2] = [this.parseFloat_(inFields[j], i, line),
+                               this.parseFloat_(inFields[j + 1], i, line)];
+      }
     } else if (this.attr_("customBars")) {
       // Bars are a low;center;high tuple
       for (var j = 1; j < inFields.length; j++) {
         var vals = inFields[j].split(";");
-        fields[j] = [ parseFloatOrNull(vals[0]),
-                      parseFloatOrNull(vals[1]),
-                      parseFloatOrNull(vals[2]) ];
+        fields[j] = [ this.parseFloat_(vals[0], i, line),
+                      this.parseFloat_(vals[1], i, line),
+                      this.parseFloat_(vals[2], i, line) ];
       }
     } else {
       // Values are just numbers
       for (var j = 1; j < inFields.length; j++) {
-        fields[j] = parseFloatOrNull(inFields[j]);
+        fields[j] = this.parseFloat_(inFields[j], i, line);
       }
     }
     if (ret.length > 0 && fields[0] < ret[ret.length - 1][0]) {
       outOfOrder = true;
     }
-    ret.push(fields);
 
     if (fields.length != expectedCols) {
       this.error("Number of columns in line " + i + " (" + fields.length +
                  ") does not agree with number of labels (" + expectedCols +
                  ") " + line);
     }
+
+    // If the user specified the 'labels' option and none of the cells of the
+    // first row parsed correctly, then they probably double-specified the
+    // labels. We go with the values set in the option, discard this row and
+    // log a warning to the JS console.
+    if (i == 0 && this.attr_('labels')) {
+      var all_null = true;
+      for (var j = 0; all_null && j < fields.length; j++) {
+        if (fields[j]) all_null = false;
+      }
+      if (all_null) {
+        this.warn("The dygraphs 'labels' option is set, but the first row of " +
+                  "CSV data ('" + line + "') appears to also contain labels. " +
+                  "Will drop the CSV labels and use the option labels.");
+        continue;
+      }
+    }
+    ret.push(fields);
   }
 
   if (outOfOrder) {
@@ -3513,3 +3615,346 @@ Dygraph.GVizChart.prototype.getSelection = function() {
 
 // Older pages may still use this name.
 DateGraph = Dygraph;
+
+// <REMOVE_FOR_COMBINED>
+Dygraph.OPTIONS_REFERENCE = {
+  includeZero : {
+    type: 'boolean',
+    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'
+  },
+  rollPeriod : {
+    type: 'integer &gt;= 1',
+    default: '1',
+    description: 'Number of days over which to average data. Discussed extensively above.'
+  },
+  showRoller : {
+    type: 'boolean',
+    default: 'false',
+    description: 'If the rolling average period text box should be shown.'
+  },
+  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.'
+  },
+  fillGraph : {
+    type: 'boolean',
+    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)'
+  },
+  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.'
+  },
+  zoomCallback : {
+    type: 'function(minDate, maxDate, yRanges)',
+    default: 'null',
+    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.'
+  },
+  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].'
+  },
+  labelsSeparateLines : {
+    type: 'boolean',
+    default: 'false',
+    description: 'Put <code>&lt;br/&gt;</code> between lines in the label string. Often used in conjunction with <strong>labelsDiv</strong>.'
+  },
+  labelsDiv : {
+    type: 'DOM element or string',
+    example: "<code style='font-size: small'>document.getElementById('foo')</code>or<code>'foo'",
+    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.'
+  },
+  labelsKMB : {
+    type: 'boolean',
+    default: 'false',
+    description: 'Show K/M/B for thousands/millions/billions on y-axis.'
+  },
+  labelsKMG2 : {
+    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.'
+  },
+  labelsDivWidth : {
+    type: 'integer',
+    default: '250',
+    description: 'Width (in pixels) of the div which shows information on the currently-highlighted points.'
+  },
+  labelsDivStyles : {
+    type: '{}',
+    default: 'null',
+    description: "Additional styles to apply to the currently-highlighted points div. For example, { 'font-weight': 'bold' } will make the labels bold."
+  },
+  highlightCircleSize : {
+    type: 'integer',
+    default: '3',
+    description: 'The size in pixels of the dot drawn over highlighted points.'
+  },
+  drawPoints : {
+    type: 'boolean',
+    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.',
+  },
+  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.'
+  },
+  pixelsPerYLabel : {
+    type: 'integer',
+    default: '30',
+    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.'
+  },
+  yAxisLabelWidth : {
+    type: 'integer',
+    default: '50',
+    description: 'Width, in pixels, of the y-axis labels.'
+  },
+  axisLabelFontSize : {
+    type: 'integer',
+    default: '14',
+    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.'
+  },
+  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.'
+  },
+  rightGap : {
+    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.'
+  },
+  errorBars : {
+    type: 'boolean',
+    default: 'false',
+    description: 'Does the data contain standard deviations? Setting this to true alters the input format (see above).'
+  },
+  sigma : {
+    type: 'integer',
+    default: '2.0',
+    description: 'When errorBars is set, shade this many standard deviations above/below each point.'
+  },
+  fractions : {
+    type: 'boolean',
+    default: 'false',
+    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 : {
+    type: 'boolean',
+    default: 'true',
+    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',
+    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.'
+  },
+  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.'
+  },
+  gridLineColor : {
+    type: 'red, blue',
+    default: 'rgb(128,128,128)',
+    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.'
+  },
+  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.'
+  },
+  width : {
+    type: 'integer',
+    default: '480',
+    description: 'Width, in pixels, of the chart. If the container div has been explicitly sized, this will be ignored.'
+  },
+  height : {
+    type: 'integer',
+    default: '320',
+    description: 'Height, in pixels, of the chart. If the container div has been explicitly sized, this will be ignored.'
+  },
+  stepPlot : {
+    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.',
+  },
+  yValueFormatter : {
+    type: 'function(x)',
+    default: '(Round to 2 decimal places)',
+    description: 'Function to provide a custom display format for the Y value for mouseover.'
+  },
+  avoidMinZero : {
+    type: 'boolean',
+    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.'
+  },
+  logscale : {
+    type: 'boolean',
+    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 : {
+    type: 'array<string>',
+    default: '["X", "Y1", "Y2", ...]*',
+    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.'
+  },
+  axisTickSize : {
+    type: 'number',
+    default: '3.0',
+    description: 'The size of the line to display next to each tick mark on x- or y-axes.'
+  },
+  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.'
+  },
+  connectSeparatedPoints : {
+    type: 'boolean',
+    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 : {
+    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.'
+  },
+  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.'
+  },
+  showLabelsOnHighlight : {
+    type: 'boolean',
+    default: 'true',
+    description: 'Whether to show the legend upon mouseover.'
+  },
+  hideOverlayOnMouseOut : {
+    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: ''
+  }
+};
+
+// Do a quick sanity check on the options reference.
+(function() {
+  var warn = function(msg) { if (console) console.warn(msg); };
+  var flds = ['type', 'default', 'description'];
+  for (var k in Dygraph.OPTIONS_REFERENCE) {
+    if (!Dygraph.OPTIONS_REFERENCE.hasOwnProperty(k)) continue;
+    var op = Dygraph.OPTIONS_REFERENCE[k];
+    for (var i = 0; i < flds.length; i++) {
+      if (!op.hasOwnProperty(flds[i])) {
+        warn('Option ' + k + ' missing "' + flds[i] + '" property');
+      } else if (typeof(op[flds[i]]) != 'string') {
+        warn(k + '.' + flds[i] + ' must be of type string');
+      }
+    }
+  }
+})();
+// </REMOVE_FOR_COMBINED>