* Return a copy of the point at the indicated index, with its yval unstacked.
* @param int index of point in layout_.points
*/
-DygraphLayout.prototype.unstackPointAtIndex_ = function(idx) {
+DygraphLayout.prototype.unstackPointAtIndex = function(idx) {
var point = this.points[idx];
// Clone the point since we modify it
var point = this.layout_.points[pos+row];
if (this.attr_("stackedGraph")) {
- point = this.layout_.unstackPointAtIndex_(pos+row);
+ point = this.layout_.unstackPointAtIndex(pos+row);
}
this.selPoints_.push(point);