dygraph-tickers builds clean
[dygraphs.git] / dygraph-interaction-model.js
CommitLineData
88e95c46
DV
1/**
2 * @license
3 * Copyright 2011 Robert Konigsberg (konigsberg@google.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
5 */
846f3d2d 6
88e95c46 7/**
846f3d2d
DV
8 * @fileoverview The default interaction model for Dygraphs. This is kept out
9 * of dygraph.js for better navigability.
10 * @author Robert Konigsberg (konigsberg@google.com)
11 */
12
758a629f
DV
13/*jshint globalstrict: true */
14/*global Dygraph:false */
c0f54d4f
DV
15"use strict";
16
846f3d2d
DV
17/**
18 * A collection of functions to facilitate build custom interaction models.
19 * @class
20 */
21Dygraph.Interaction = {};
22
23/**
24 * Called in response to an interaction model operation that
25 * should start the default panning behavior.
26 *
27 * It's used in the default callback for "mousedown" operations.
28 * Custom interaction model builders can use it to provide the default
29 * panning behavior.
30 *
31 * @param { Event } event the event object which led to the startPan call.
32 * @param { Dygraph} g The dygraph on which to act.
33 * @param { Object} context The dragging context object (with
34 * dragStartX/dragStartY/etc. properties). This function modifies the context.
35 */
36Dygraph.Interaction.startPan = function(event, g, context) {
758a629f 37 var i, axis;
846f3d2d
DV
38 context.isPanning = true;
39 var xRange = g.xAxisRange();
40 context.dateRange = xRange[1] - xRange[0];
41 context.initialLeftmostDate = xRange[0];
42 context.xUnitsPerPixel = context.dateRange / (g.plotter_.area.w - 1);
43
44 if (g.attr_("panEdgeFraction")) {
45 var maxXPixelsToDraw = g.width_ * g.attr_("panEdgeFraction");
46 var xExtremes = g.xAxisExtremes(); // I REALLY WANT TO CALL THIS xTremes!
47
48 var boundedLeftX = g.toDomXCoord(xExtremes[0]) - maxXPixelsToDraw;
49 var boundedRightX = g.toDomXCoord(xExtremes[1]) + maxXPixelsToDraw;
50
51 var boundedLeftDate = g.toDataXCoord(boundedLeftX);
52 var boundedRightDate = g.toDataXCoord(boundedRightX);
53 context.boundedDates = [boundedLeftDate, boundedRightDate];
54
55 var boundedValues = [];
56 var maxYPixelsToDraw = g.height_ * g.attr_("panEdgeFraction");
57
758a629f
DV
58 for (i = 0; i < g.axes_.length; i++) {
59 axis = g.axes_[i];
846f3d2d
DV
60 var yExtremes = axis.extremeRange;
61
62 var boundedTopY = g.toDomYCoord(yExtremes[0], i) + maxYPixelsToDraw;
63 var boundedBottomY = g.toDomYCoord(yExtremes[1], i) - maxYPixelsToDraw;
64
65 var boundedTopValue = g.toDataYCoord(boundedTopY);
66 var boundedBottomValue = g.toDataYCoord(boundedBottomY);
67
68 boundedValues[i] = [boundedTopValue, boundedBottomValue];
69 }
70 context.boundedValues = boundedValues;
71 }
72
73 // Record the range of each y-axis at the start of the drag.
74 // If any axis has a valueRange or valueWindow, then we want a 2D pan.
97583b90
DV
75 // We can't store data directly in g.axes_, because it does not belong to us
76 // and could change out from under us during a pan (say if there's a data
77 // update).
846f3d2d 78 context.is2DPan = false;
97583b90 79 context.axes = [];
758a629f
DV
80 for (i = 0; i < g.axes_.length; i++) {
81 axis = g.axes_[i];
97583b90 82 var axis_data = {};
846f3d2d
DV
83 var yRange = g.yAxisRange(i);
84 // TODO(konigsberg): These values should be in |context|.
85 // In log scale, initialTopValue, dragValueRange and unitsPerPixel are log scale.
86 if (axis.logscale) {
97583b90
DV
87 axis_data.initialTopValue = Dygraph.log10(yRange[1]);
88 axis_data.dragValueRange = Dygraph.log10(yRange[1]) - Dygraph.log10(yRange[0]);
846f3d2d 89 } else {
97583b90
DV
90 axis_data.initialTopValue = yRange[1];
91 axis_data.dragValueRange = yRange[1] - yRange[0];
846f3d2d 92 }
97583b90
DV
93 axis_data.unitsPerPixel = axis_data.dragValueRange / (g.plotter_.area.h - 1);
94 context.axes.push(axis_data);
846f3d2d
DV
95
96 // While calculating axes, set 2dpan.
97 if (axis.valueWindow || axis.valueRange) context.is2DPan = true;
98 }
99};
100
101/**
102 * Called in response to an interaction model operation that
103 * responds to an event that pans the view.
104 *
105 * It's used in the default callback for "mousemove" operations.
106 * Custom interaction model builders can use it to provide the default
107 * panning behavior.
108 *
109 * @param { Event } event the event object which led to the movePan call.
110 * @param { Dygraph} g The dygraph on which to act.
111 * @param { Object} context The dragging context object (with
112 * dragStartX/dragStartY/etc. properties). This function modifies the context.
113 */
114Dygraph.Interaction.movePan = function(event, g, context) {
115 context.dragEndX = g.dragGetX_(event, context);
116 context.dragEndY = g.dragGetY_(event, context);
117
118 var minDate = context.initialLeftmostDate -
119 (context.dragEndX - context.dragStartX) * context.xUnitsPerPixel;
120 if (context.boundedDates) {
121 minDate = Math.max(minDate, context.boundedDates[0]);
122 }
123 var maxDate = minDate + context.dateRange;
124 if (context.boundedDates) {
125 if (maxDate > context.boundedDates[1]) {
126 // Adjust minDate, and recompute maxDate.
127 minDate = minDate - (maxDate - context.boundedDates[1]);
128 maxDate = minDate + context.dateRange;
129 }
130 }
131
132 g.dateWindow_ = [minDate, maxDate];
133
134 // y-axis scaling is automatic unless this is a full 2D pan.
135 if (context.is2DPan) {
136 // Adjust each axis appropriately.
137 for (var i = 0; i < g.axes_.length; i++) {
138 var axis = g.axes_[i];
97583b90 139 var axis_data = context.axes[i];
846f3d2d
DV
140
141 var pixelsDragged = context.dragEndY - context.dragStartY;
97583b90 142 var unitsDragged = pixelsDragged * axis_data.unitsPerPixel;
920208fb 143
846f3d2d
DV
144 var boundedValue = context.boundedValues ? context.boundedValues[i] : null;
145
146 // In log scale, maxValue and minValue are the logs of those values.
97583b90 147 var maxValue = axis_data.initialTopValue + unitsDragged;
846f3d2d
DV
148 if (boundedValue) {
149 maxValue = Math.min(maxValue, boundedValue[1]);
150 }
97583b90 151 var minValue = maxValue - axis_data.dragValueRange;
846f3d2d
DV
152 if (boundedValue) {
153 if (minValue < boundedValue[0]) {
154 // Adjust maxValue, and recompute minValue.
155 maxValue = maxValue - (minValue - boundedValue[0]);
97583b90 156 minValue = maxValue - axis_data.dragValueRange;
846f3d2d
DV
157 }
158 }
159 if (axis.logscale) {
160 axis.valueWindow = [ Math.pow(Dygraph.LOG_SCALE, minValue),
161 Math.pow(Dygraph.LOG_SCALE, maxValue) ];
162 } else {
163 axis.valueWindow = [ minValue, maxValue ];
164 }
165 }
166 }
167
168 g.drawGraph_(false);
169};
170
171/**
172 * Called in response to an interaction model operation that
173 * responds to an event that ends panning.
174 *
175 * It's used in the default callback for "mouseup" operations.
176 * Custom interaction model builders can use it to provide the default
177 * panning behavior.
178 *
6125fedf 179 * @param { Event } event the event object which led to the endPan call.
846f3d2d
DV
180 * @param { Dygraph} g The dygraph on which to act.
181 * @param { Object} context The dragging context object (with
182 * dragStartX/dragStartY/etc. properties). This function modifies the context.
183 */
184Dygraph.Interaction.endPan = function(event, g, context) {
185 context.dragEndX = g.dragGetX_(event, context);
186 context.dragEndY = g.dragGetY_(event, context);
187
188 var regionWidth = Math.abs(context.dragEndX - context.dragStartX);
189 var regionHeight = Math.abs(context.dragEndY - context.dragStartY);
190
191 if (regionWidth < 2 && regionHeight < 2 &&
758a629f 192 g.lastx_ !== undefined && g.lastx_ != -1) {
846f3d2d
DV
193 Dygraph.Interaction.treatMouseOpAsClick(g, event, context);
194 }
195
846f3d2d
DV
196 // TODO(konigsberg): mouseup should just delete the
197 // context object, and mousedown should create a new one.
198 context.isPanning = false;
199 context.is2DPan = false;
200 context.initialLeftmostDate = null;
201 context.dateRange = null;
202 context.valueRange = null;
203 context.boundedDates = null;
204 context.boundedValues = null;
97583b90 205 context.axes = null;
846f3d2d
DV
206};
207
208/**
209 * Called in response to an interaction model operation that
210 * responds to an event that starts zooming.
211 *
212 * It's used in the default callback for "mousedown" operations.
213 * Custom interaction model builders can use it to provide the default
214 * zooming behavior.
215 *
216 * @param { Event } event the event object which led to the startZoom call.
217 * @param { Dygraph} g The dygraph on which to act.
218 * @param { Object} context The dragging context object (with
219 * dragStartX/dragStartY/etc. properties). This function modifies the context.
220 */
221Dygraph.Interaction.startZoom = function(event, g, context) {
222 context.isZooming = true;
214083b4 223 context.zoomMoved = false;
846f3d2d
DV
224};
225
226/**
227 * Called in response to an interaction model operation that
228 * responds to an event that defines zoom boundaries.
229 *
230 * It's used in the default callback for "mousemove" operations.
231 * Custom interaction model builders can use it to provide the default
232 * zooming behavior.
233 *
234 * @param { Event } event the event object which led to the moveZoom call.
235 * @param { Dygraph} g The dygraph on which to act.
236 * @param { Object} context The dragging context object (with
237 * dragStartX/dragStartY/etc. properties). This function modifies the context.
238 */
239Dygraph.Interaction.moveZoom = function(event, g, context) {
214083b4 240 context.zoomMoved = true;
846f3d2d
DV
241 context.dragEndX = g.dragGetX_(event, context);
242 context.dragEndY = g.dragGetY_(event, context);
243
244 var xDelta = Math.abs(context.dragStartX - context.dragEndX);
245 var yDelta = Math.abs(context.dragStartY - context.dragEndY);
246
247 // drag direction threshold for y axis is twice as large as x axis
248 context.dragDirection = (xDelta < yDelta / 2) ? Dygraph.VERTICAL : Dygraph.HORIZONTAL;
249
250 g.drawZoomRect_(
251 context.dragDirection,
252 context.dragStartX,
253 context.dragEndX,
254 context.dragStartY,
255 context.dragEndY,
256 context.prevDragDirection,
257 context.prevEndX,
258 context.prevEndY);
259
260 context.prevEndX = context.dragEndX;
261 context.prevEndY = context.dragEndY;
262 context.prevDragDirection = context.dragDirection;
263};
264
265Dygraph.Interaction.treatMouseOpAsClick = function(g, event, context) {
266 var clickCallback = g.attr_('clickCallback');
267 var pointClickCallback = g.attr_('pointClickCallback');
268
269 var selectedPoint = null;
270
271 // Find out if the click occurs on a point. This only matters if there's a pointClickCallback.
272 if (pointClickCallback) {
273 var closestIdx = -1;
274 var closestDistance = Number.MAX_VALUE;
275
276 // check if the click was on a particular point.
277 for (var i = 0; i < g.selPoints_.length; i++) {
278 var p = g.selPoints_[i];
279 var distance = Math.pow(p.canvasx - context.dragEndX, 2) +
280 Math.pow(p.canvasy - context.dragEndY, 2);
fbff6d71
DV
281 if (!isNaN(distance) &&
282 (closestIdx == -1 || distance < closestDistance)) {
846f3d2d
DV
283 closestDistance = distance;
284 closestIdx = i;
285 }
286 }
287
288 // Allow any click within two pixels of the dot.
289 var radius = g.attr_('highlightCircleSize') + 2;
290 if (closestDistance <= radius * radius) {
291 selectedPoint = g.selPoints_[closestIdx];
292 }
293 }
294
295 if (selectedPoint) {
296 pointClickCallback(event, selectedPoint);
297 }
298
299 // TODO(danvk): pass along more info about the points, e.g. 'x'
300 if (clickCallback) {
301 clickCallback(event, g.lastx_, g.selPoints_);
302 }
303};
304
305/**
306 * Called in response to an interaction model operation that
307 * responds to an event that performs a zoom based on previously defined
308 * bounds..
309 *
310 * It's used in the default callback for "mouseup" operations.
311 * Custom interaction model builders can use it to provide the default
312 * zooming behavior.
313 *
314 * @param { Event } event the event object which led to the endZoom call.
315 * @param { Dygraph} g The dygraph on which to end the zoom.
316 * @param { Object} context The dragging context object (with
317 * dragStartX/dragStartY/etc. properties). This function modifies the context.
318 */
319Dygraph.Interaction.endZoom = function(event, g, context) {
320 context.isZooming = false;
321 context.dragEndX = g.dragGetX_(event, context);
322 context.dragEndY = g.dragGetY_(event, context);
323 var regionWidth = Math.abs(context.dragEndX - context.dragStartX);
324 var regionHeight = Math.abs(context.dragEndY - context.dragStartY);
325
326 if (regionWidth < 2 && regionHeight < 2 &&
758a629f 327 g.lastx_ !== undefined && g.lastx_ != -1) {
846f3d2d
DV
328 Dygraph.Interaction.treatMouseOpAsClick(g, event, context);
329 }
330
331 if (regionWidth >= 10 && context.dragDirection == Dygraph.HORIZONTAL) {
332 g.doZoomX_(Math.min(context.dragStartX, context.dragEndX),
333 Math.max(context.dragStartX, context.dragEndX));
421f1773 334 context.cancelNextDblclick = true;
846f3d2d
DV
335 } else if (regionHeight >= 10 && context.dragDirection == Dygraph.VERTICAL) {
336 g.doZoomY_(Math.min(context.dragStartY, context.dragEndY),
337 Math.max(context.dragStartY, context.dragEndY));
421f1773 338 context.cancelNextDblclick = true;
846f3d2d 339 } else {
42b3b41f 340 if (context.zoomMoved) g.clearZoomRect_();
846f3d2d
DV
341 }
342 context.dragStartX = null;
343 context.dragStartY = null;
344};
345
346/**
6125fedf
DV
347 * @private
348 */
349Dygraph.Interaction.startTouch = function(event, g, context) {
350 event.preventDefault(); // touch browsers are all nice.
351 var touches = [];
352 for (var i = 0; i < event.touches.length; i++) {
353 var t = event.touches[i];
354 // we dispense with 'dragGetX_' because all touchBrowsers support pageX
355 touches.push({
356 pageX: t.pageX,
357 pageY: t.pageY,
358 dataX: g.toDataXCoord(t.pageX),
359 dataY: g.toDataYCoord(t.pageY)
360 // identifier: t.identifier
361 });
362 }
363 context.initialTouches = touches;
364
365 if (touches.length == 1) {
366 // This is just a swipe.
367 context.initialPinchCenter = touches[0];
368 context.touchDirections = { x: true, y: true };
369 } else if (touches.length == 2) {
370 // It's become a pinch!
371
372 // only screen coordinates can be averaged (data coords could be log scale).
373 context.initialPinchCenter = {
374 pageX: 0.5 * (touches[0].pageX + touches[1].pageX),
375 pageY: 0.5 * (touches[0].pageY + touches[1].pageY),
376
377 // TODO(danvk): remove
378 dataX: 0.5 * (touches[0].dataX + touches[1].dataX),
e446c952 379 dataY: 0.5 * (touches[0].dataY + touches[1].dataY)
6125fedf
DV
380 };
381
382 // Make pinches in a 45-degree swath around either axis 1-dimensional zooms.
383 var initialAngle = 180 / Math.PI * Math.atan2(
384 context.initialPinchCenter.pageY - touches[0].pageY,
385 touches[0].pageX - context.initialPinchCenter.pageX);
386
387 // use symmetry to get it into the first quadrant.
388 initialAngle = Math.abs(initialAngle);
389 if (initialAngle > 90) initialAngle = 90 - initialAngle;
390
391 context.touchDirections = {
392 x: (initialAngle < (90 - 45/2)),
393 y: (initialAngle > 45/2)
394 };
395 }
396
397 // save the full x & y ranges.
398 context.initialRange = {
399 x: g.xAxisRange(),
400 y: g.yAxisRange()
401 };
402};
403
404/**
405 * @private
406 */
407Dygraph.Interaction.moveTouch = function(event, g, context) {
e446c952
DV
408 var i, touches = [];
409 for (i = 0; i < event.touches.length; i++) {
6125fedf
DV
410 var t = event.touches[i];
411 touches.push({
412 pageX: t.pageX,
e446c952 413 pageY: t.pageY
6125fedf
DV
414 });
415 }
416 var initialTouches = context.initialTouches;
417
418 var c_now;
419
420 // old and new centers.
421 var c_init = context.initialPinchCenter;
422 if (touches.length == 1) {
423 c_now = touches[0];
424 } else {
425 c_now = {
426 pageX: 0.5 * (touches[0].pageX + touches[1].pageX),
427 pageY: 0.5 * (touches[0].pageY + touches[1].pageY)
428 };
429 }
430
431 // this is the "swipe" component
432 // we toss it out for now, but could use it in the future.
433 var swipe = {
434 pageX: c_now.pageX - c_init.pageX,
e446c952 435 pageY: c_now.pageY - c_init.pageY
6125fedf
DV
436 };
437 var dataWidth = context.initialRange.x[1] - context.initialRange.x[0];
438 var dataHeight = context.initialRange.y[0] - context.initialRange.y[1];
439 swipe.dataX = (swipe.pageX / g.plotter_.area.w) * dataWidth;
440 swipe.dataY = (swipe.pageY / g.plotter_.area.h) * dataHeight;
441 var xScale, yScale;
442
443 // The residual bits are usually split into scale & rotate bits, but we split
444 // them into x-scale and y-scale bits.
445 if (touches.length == 1) {
446 xScale = 1.0;
447 yScale = 1.0;
448 } else if (touches.length == 2) {
449 var initHalfWidth = (initialTouches[1].pageX - c_init.pageX);
450 xScale = (touches[1].pageX - c_now.pageX) / initHalfWidth;
451
452 var initHalfHeight = (initialTouches[1].pageY - c_init.pageY);
453 yScale = (touches[1].pageY - c_now.pageY) / initHalfHeight;
454 }
455
456 // Clip scaling to [1/8, 8] to prevent too much blowup.
457 xScale = Math.min(8, Math.max(0.125, xScale));
458 yScale = Math.min(8, Math.max(0.125, yScale));
459
460 if (context.touchDirections.x) {
461 g.dateWindow_ = [
462 c_init.dataX - swipe.dataX + (context.initialRange.x[0] - c_init.dataX) / xScale,
e446c952 463 c_init.dataX - swipe.dataX + (context.initialRange.x[1] - c_init.dataX) / xScale
6125fedf
DV
464 ];
465 }
466
467 if (context.touchDirections.y) {
e446c952 468 for (i = 0; i < 1 /*g.axes_.length*/; i++) {
6125fedf
DV
469 var axis = g.axes_[i];
470 if (axis.logscale) {
471 // TODO(danvk): implement
472 } else {
473 axis.valueWindow = [
474 c_init.dataY - swipe.dataY + (context.initialRange.y[0] - c_init.dataY) / yScale,
e446c952 475 c_init.dataY - swipe.dataY + (context.initialRange.y[1] - c_init.dataY) / yScale
6125fedf
DV
476 ];
477 }
478 }
479 }
480
481 g.drawGraph_(false);
482};
483
484/**
485 * @private
486 */
487Dygraph.Interaction.endTouch = function(event, g, context) {
42a9ebb8 488 if (event.touches.length !== 0) {
6125fedf
DV
489 // this is effectively a "reset"
490 Dygraph.Interaction.startTouch(event, g, context);
491 }
492};
493
494/**
846f3d2d
DV
495 * Default interation model for dygraphs. You can refer to specific elements of
496 * this when constructing your own interaction model, e.g.:
497 * g.updateOptions( {
498 * interactionModel: {
499 * mousedown: Dygraph.defaultInteractionModel.mousedown
500 * }
501 * } );
502 */
503Dygraph.Interaction.defaultModel = {
504 // Track the beginning of drag events
505 mousedown: function(event, g, context) {
e992d194
DV
506 // Right-click should not initiate a zoom.
507 if (event.button && event.button == 2) return;
508
846f3d2d
DV
509 context.initializeMouseDown(event, g, context);
510
511 if (event.altKey || event.shiftKey) {
512 Dygraph.startPan(event, g, context);
513 } else {
514 Dygraph.startZoom(event, g, context);
515 }
516 },
517
518 // Draw zoom rectangles when the mouse is down and the user moves around
519 mousemove: function(event, g, context) {
520 if (context.isZooming) {
521 Dygraph.moveZoom(event, g, context);
522 } else if (context.isPanning) {
523 Dygraph.movePan(event, g, context);
524 }
525 },
526
527 mouseup: function(event, g, context) {
528 if (context.isZooming) {
529 Dygraph.endZoom(event, g, context);
530 } else if (context.isPanning) {
531 Dygraph.endPan(event, g, context);
532 }
533 },
534
6125fedf
DV
535 touchstart: function(event, g, context) {
536 Dygraph.Interaction.startTouch(event, g, context);
537 },
538 touchmove: function(event, g, context) {
539 Dygraph.Interaction.moveTouch(event, g, context);
540 },
541 touchend: function(event, g, context) {
542 Dygraph.Interaction.endTouch(event, g, context);
543 },
544
846f3d2d
DV
545 // Temporarily cancel the dragging event when the mouse leaves the graph
546 mouseout: function(event, g, context) {
547 if (context.isZooming) {
548 context.dragEndX = null;
549 context.dragEndY = null;
550 }
551 },
552
553 // Disable zooming out if panning.
554 dblclick: function(event, g, context) {
421f1773
DV
555 if (context.cancelNextDblclick) {
556 context.cancelNextDblclick = false;
557 return;
558 }
846f3d2d
DV
559 if (event.altKey || event.shiftKey) {
560 return;
561 }
562 // TODO(konigsberg): replace g.doUnzoom()_ with something that is
563 // friendlier to public use.
564 g.doUnzoom_();
565 }
566};
567
568Dygraph.DEFAULT_ATTRS.interactionModel = Dygraph.Interaction.defaultModel;
569
570// old ways of accessing these methods/properties
571Dygraph.defaultInteractionModel = Dygraph.Interaction.defaultModel;
572Dygraph.endZoom = Dygraph.Interaction.endZoom;
573Dygraph.moveZoom = Dygraph.Interaction.moveZoom;
574Dygraph.startZoom = Dygraph.Interaction.startZoom;
575Dygraph.endPan = Dygraph.Interaction.endPan;
576Dygraph.movePan = Dygraph.Interaction.movePan;
577Dygraph.startPan = Dygraph.Interaction.startPan;
578
0290d079 579Dygraph.Interaction.nonInteractiveModel_ = {
027e9e9b
DV
580 mousedown: function(event, g, context) {
581 context.initializeMouseDown(event, g, context);
582 },
583 mouseup: function(event, g, context) {
584 // TODO(danvk): this logic is repeated in Dygraph.Interaction.endZoom
585 context.dragEndX = g.dragGetX_(event, context);
586 context.dragEndY = g.dragGetY_(event, context);
587 var regionWidth = Math.abs(context.dragEndX - context.dragStartX);
588 var regionHeight = Math.abs(context.dragEndY - context.dragStartY);
589
590 if (regionWidth < 2 && regionHeight < 2 &&
758a629f 591 g.lastx_ !== undefined && g.lastx_ != -1) {
027e9e9b
DV
592 Dygraph.Interaction.treatMouseOpAsClick(g, event, context);
593 }
594 }
595};
3417f017
DV
596
597// Default interaction model when using the range selector.
598Dygraph.Interaction.dragIsPanInteractionModel = {
599 mousedown: function(event, g, context) {
600 context.initializeMouseDown(event, g, context);
601 Dygraph.startPan(event, g, context);
602 },
603 mousemove: function(event, g, context) {
604 if (context.isPanning) {
605 Dygraph.movePan(event, g, context);
606 }
607 },
608 mouseup: function(event, g, context) {
609 if (context.isPanning) {
610 Dygraph.endPan(event, g, context);
611 }
612 }
613};