Make seriesToPoints_ and stackPoints_ private. They are being rendered as part of...
authorRobert Konigsberg <konigsberg@google.com>
Tue, 16 Jul 2013 12:41:02 +0000 (08:41 -0400)
committerRobert Konigsberg <konigsberg@google.com>
Tue, 16 Jul 2013 12:41:02 +0000 (08:41 -0400)
dygraph.js

index 1ee711c..879ce8d 100644 (file)
@@ -2282,6 +2282,7 @@ Dygraph.PointType = undefined;
 /**
  * Converts a series to a Point array.
  *
+ * @private
  * @param {Array.<Array.<(?number|Array<?number>)>} series Array where
  *     series[row] = [x,y] or [x, [y, err]] or [x, [y, yplus, yminus]].
  * @param {boolean} bars True if error bars or custom bars are being drawn.
@@ -2333,6 +2334,7 @@ Dygraph.seriesToPoints_ = function(series, bars, setName, boundaryIdStart) {
  *     to reflect the stacked values.
  * @param {string} fillMethod Interpolation method, one of 'all', 'inside', or
  *     'none'.
+ * @private
  */
 Dygraph.stackPoints_ = function(
     points, cumulativeYval, seriesExtremes, fillMethod) {