3 * Copyright 2011 Robert Konigsberg (konigsberg@google.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
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)
13 /*jshint globalstrict: true */
14 /*global Dygraph:false */
18 * A collection of functions to facilitate build custom interaction models.
21 Dygraph
.Interaction
= {};
24 * Called in response to an interaction model operation that
25 * should start the default panning behavior.
27 * It's used in the default callback for "mousedown" operations.
28 * Custom interaction model builders can use it to provide the default
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
37 Dygraph
.Interaction
.startPan
= function(event
, g
, context
) {
39 context
.isPanning
= true;
40 var xRange
= g
.xAxisRange();
41 context
.dateRange
= xRange
[1] - xRange
[0];
42 context
.initialLeftmostDate
= xRange
[0];
43 context
.xUnitsPerPixel
= context
.dateRange
/ (g
.plotter_
.area
.w
- 1);
45 if (g
.getNumericOption("panEdgeFraction")) {
46 var maxXPixelsToDraw
= g
.width_
* g
.getNumericOption("panEdgeFraction");
47 var xExtremes
= g
.xAxisExtremes(); // I REALLY WANT TO CALL THIS xTremes!
49 var boundedLeftX
= g
.toDomXCoord(xExtremes
[0]) - maxXPixelsToDraw
;
50 var boundedRightX
= g
.toDomXCoord(xExtremes
[1]) + maxXPixelsToDraw
;
52 var boundedLeftDate
= g
.toDataXCoord(boundedLeftX
);
53 var boundedRightDate
= g
.toDataXCoord(boundedRightX
);
54 context
.boundedDates
= [boundedLeftDate
, boundedRightDate
];
56 var boundedValues
= [];
57 var maxYPixelsToDraw
= g
.height_
* g
.getNumericOption("panEdgeFraction");
59 for (i
= 0; i
< g
.axes_
.length
; i
++) {
61 var yExtremes
= axis
.extremeRange
;
63 var boundedTopY
= g
.toDomYCoord(yExtremes
[0], i
) + maxYPixelsToDraw
;
64 var boundedBottomY
= g
.toDomYCoord(yExtremes
[1], i
) - maxYPixelsToDraw
;
66 var boundedTopValue
= g
.toDataYCoord(boundedTopY
, i
);
67 var boundedBottomValue
= g
.toDataYCoord(boundedBottomY
, i
);
69 boundedValues
[i
] = [boundedTopValue
, boundedBottomValue
];
71 context
.boundedValues
= boundedValues
;
74 // Record the range of each y-axis at the start of the drag.
75 // If any axis has a valueRange or valueWindow, then we want a 2D pan.
76 // We can't store data directly in g.axes_, because it does not belong to us
77 // and could change out from under us during a pan (say if there's a data
79 context
.is2DPan
= false;
81 for (i
= 0; i
< g
.axes_
.length
; i
++) {
84 var yRange
= g
.yAxisRange(i
);
85 // TODO(konigsberg): These values should be in |context|.
86 // In log scale, initialTopValue, dragValueRange and unitsPerPixel are log scale.
87 var logscale
= g
.attributes_
.getForAxis("logscale", i
);
89 axis_data
.initialTopValue
= Dygraph
.log10(yRange
[1]);
90 axis_data
.dragValueRange
= Dygraph
.log10(yRange
[1]) - Dygraph
.log10(yRange
[0]);
92 axis_data
.initialTopValue
= yRange
[1];
93 axis_data
.dragValueRange
= yRange
[1] - yRange
[0];
95 axis_data
.unitsPerPixel
= axis_data
.dragValueRange
/ (g
.plotter_
.area
.h
- 1);
96 context
.axes
.push(axis_data
);
98 // While calculating axes, set 2dpan.
99 if (axis
.valueWindow
|| axis
.valueRange
) context
.is2DPan
= true;
104 * Called in response to an interaction model operation that
105 * responds to an event that pans the view.
107 * It's used in the default callback for "mousemove" operations.
108 * Custom interaction model builders can use it to provide the default
111 * @param {Event} event the event object which led to the movePan call.
112 * @param {Dygraph} g The dygraph on which to act.
113 * @param {Object} context The dragging context object (with
114 * dragStartX/dragStartY/etc. properties). This function modifies the
117 Dygraph
.Interaction
.movePan
= function(event
, g
, context
) {
118 context
.dragEndX
= Dygraph
.dragGetX_(event
, context
);
119 context
.dragEndY
= Dygraph
.dragGetY_(event
, context
);
121 var minDate
= context
.initialLeftmostDate
-
122 (context
.dragEndX
- context
.dragStartX
) * context
.xUnitsPerPixel
;
123 if (context
.boundedDates
) {
124 minDate
= Math
.max(minDate
, context
.boundedDates
[0]);
126 var maxDate
= minDate
+ context
.dateRange
;
127 if (context
.boundedDates
) {
128 if (maxDate
> context
.boundedDates
[1]) {
129 // Adjust minDate, and recompute maxDate.
130 minDate
= minDate
- (maxDate
- context
.boundedDates
[1]);
131 maxDate
= minDate
+ context
.dateRange
;
135 g
.dateWindow_
= [minDate
, maxDate
];
137 // y-axis scaling is automatic unless this is a full 2D pan.
138 if (context
.is2DPan
) {
140 var pixelsDragged
= context
.dragEndY
- context
.dragStartY
;
142 // Adjust each axis appropriately.
143 for (var i
= 0; i
< g
.axes_
.length
; i
++) {
144 var axis
= g
.axes_
[i
];
145 var axis_data
= context
.axes
[i
];
146 var unitsDragged
= pixelsDragged
* axis_data
.unitsPerPixel
;
148 var boundedValue
= context
.boundedValues
? context
.boundedValues
[i
] : null;
150 // In log scale, maxValue and minValue are the logs of those values.
151 var maxValue
= axis_data
.initialTopValue
+ unitsDragged
;
153 maxValue
= Math
.min(maxValue
, boundedValue
[1]);
155 var minValue
= maxValue
- axis_data
.dragValueRange
;
157 if (minValue
< boundedValue
[0]) {
158 // Adjust maxValue, and recompute minValue.
159 maxValue
= maxValue
- (minValue
- boundedValue
[0]);
160 minValue
= maxValue
- axis_data
.dragValueRange
;
163 var logscale
= g
.attributes_
.getForAxis("logscale", i
);
165 axis
.valueWindow
= [ Math
.pow(Dygraph
.LOG_SCALE
, minValue
),
166 Math
.pow(Dygraph
.LOG_SCALE
, maxValue
) ];
168 axis
.valueWindow
= [ minValue
, maxValue
];
177 * Called in response to an interaction model operation that
178 * responds to an event that ends panning.
180 * It's used in the default callback for "mouseup" operations.
181 * Custom interaction model builders can use it to provide the default
184 * @param {Event} event the event object which led to the endPan call.
185 * @param {Dygraph} g The dygraph on which to act.
186 * @param {Object} context The dragging context object (with
187 * dragStartX/dragStartY/etc. properties). This function modifies the
190 Dygraph
.Interaction
.endPan
= function(event
, g
, context
) {
191 context
.dragEndX
= Dygraph
.dragGetX_(event
, context
);
192 context
.dragEndY
= Dygraph
.dragGetY_(event
, context
);
194 var regionWidth
= Math
.abs(context
.dragEndX
- context
.dragStartX
);
195 var regionHeight
= Math
.abs(context
.dragEndY
- context
.dragStartY
);
197 if (regionWidth
< 2 && regionHeight
< 2 &&
198 g
.lastx_
!== undefined
&& g
.lastx_
!= -1) {
199 Dygraph
.Interaction
.treatMouseOpAsClick(g
, event
, context
);
202 // TODO(konigsberg): mouseup should just delete the
203 // context object, and mousedown should create a new one.
204 context
.isPanning
= false;
205 context
.is2DPan
= false;
206 context
.initialLeftmostDate
= null;
207 context
.dateRange
= null;
208 context
.valueRange
= null;
209 context
.boundedDates
= null;
210 context
.boundedValues
= null;
215 * Called in response to an interaction model operation that
216 * responds to an event that starts zooming.
218 * It's used in the default callback for "mousedown" operations.
219 * Custom interaction model builders can use it to provide the default
222 * @param {Event} event the event object which led to the startZoom call.
223 * @param {Dygraph} g The dygraph on which to act.
224 * @param {Object} context The dragging context object (with
225 * dragStartX/dragStartY/etc. properties). This function modifies the
228 Dygraph
.Interaction
.startZoom
= function(event
, g
, context
) {
229 context
.isZooming
= true;
230 context
.zoomMoved
= false;
234 * Called in response to an interaction model operation that
235 * responds to an event that defines zoom boundaries.
237 * It's used in the default callback for "mousemove" operations.
238 * Custom interaction model builders can use it to provide the default
241 * @param {Event} event the event object which led to the moveZoom call.
242 * @param {Dygraph} g The dygraph on which to act.
243 * @param {Object} context The dragging context object (with
244 * dragStartX/dragStartY/etc. properties). This function modifies the
247 Dygraph
.Interaction
.moveZoom
= function(event
, g
, context
) {
248 context
.zoomMoved
= true;
249 context
.dragEndX
= Dygraph
.dragGetX_(event
, context
);
250 context
.dragEndY
= Dygraph
.dragGetY_(event
, context
);
252 var xDelta
= Math
.abs(context
.dragStartX
- context
.dragEndX
);
253 var yDelta
= Math
.abs(context
.dragStartY
- context
.dragEndY
);
255 // drag direction threshold for y axis is twice as large as x axis
256 context
.dragDirection
= (xDelta
< yDelta
/ 2) ? Dygraph
.VERTICAL
: Dygraph
.HORIZONTAL
;
259 context
.dragDirection
,
264 context
.prevDragDirection
,
268 context
.prevEndX
= context
.dragEndX
;
269 context
.prevEndY
= context
.dragEndY
;
270 context
.prevDragDirection
= context
.dragDirection
;
275 * @param {Event} event
276 * @param {Object} context
278 Dygraph
.Interaction
.treatMouseOpAsClick
= function(g
, event
, context
) {
279 var clickCallback
= g
.getFunctionOption('clickCallback');
280 var pointClickCallback
= g
.getFunctionOption('pointClickCallback');
282 var selectedPoint
= null;
284 // Find out if the click occurs on a point. This only matters if there's a
285 // pointClickCallback.
286 if (pointClickCallback
) {
288 var closestDistance
= Number
.MAX_VALUE
;
290 // check if the click was on a particular point.
291 for (var i
= 0; i
< g
.selPoints_
.length
; i
++) {
292 var p
= g
.selPoints_
[i
];
293 var distance
= Math
.pow(p
.canvasx
- context
.dragEndX
, 2) +
294 Math
.pow(p
.canvasy
- context
.dragEndY
, 2);
295 if (!isNaN(distance
) &&
296 (closestIdx
== -1 || distance
< closestDistance
)) {
297 closestDistance
= distance
;
302 // Allow any click within two pixels of the dot.
303 var radius
= g
.getNumericOption('highlightCircleSize') + 2;
304 if (closestDistance
<= radius
* radius
) {
305 selectedPoint
= g
.selPoints_
[closestIdx
];
310 pointClickCallback(event
, selectedPoint
);
313 // TODO(danvk): pass along more info about the points, e.g. 'x'
315 clickCallback(event
, g
.lastx_
, g
.selPoints_
);
320 * Called in response to an interaction model operation that
321 * responds to an event that performs a zoom based on previously defined
324 * It's used in the default callback for "mouseup" operations.
325 * Custom interaction model builders can use it to provide the default
328 * @param {Event} event the event object which led to the endZoom call.
329 * @param {Dygraph} g The dygraph on which to end the zoom.
330 * @param {Object} context The dragging context object (with
331 * dragStartX/dragStartY/etc. properties). This function modifies the
334 Dygraph
.Interaction
.endZoom
= function(event
, g
, context
) {
335 context
.isZooming
= false;
336 context
.dragEndX
= Dygraph
.dragGetX_(event
, context
);
337 context
.dragEndY
= Dygraph
.dragGetY_(event
, context
);
338 var regionWidth
= Math
.abs(context
.dragEndX
- context
.dragStartX
);
339 var regionHeight
= Math
.abs(context
.dragEndY
- context
.dragStartY
);
341 if (regionWidth
< 2 && regionHeight
< 2 &&
342 g
.lastx_
!== undefined
&& g
.lastx_
!= -1) {
343 Dygraph
.Interaction
.treatMouseOpAsClick(g
, event
, context
);
346 // The zoom rectangle is visibly clipped to the plot area, so its behavior
347 // should be as well.
348 // See http://code.google.com/p/dygraphs/issues/detail
?id
=280
349 var plotArea
= g
.getArea();
350 if (regionWidth
>= 10 && context
.dragDirection
== Dygraph
.HORIZONTAL
) {
351 var left
= Math
.min(context
.dragStartX
, context
.dragEndX
),
352 right
= Math
.max(context
.dragStartX
, context
.dragEndX
);
353 left
= Math
.max(left
, plotArea
.x
);
354 right
= Math
.min(right
, plotArea
.x
+ plotArea
.w
);
356 g
.doZoomX_(left
, right
);
358 context
.cancelNextDblclick
= true;
359 } else if (regionHeight
>= 10 && context
.dragDirection
== Dygraph
.VERTICAL
) {
360 var top
= Math
.min(context
.dragStartY
, context
.dragEndY
),
361 bottom
= Math
.max(context
.dragStartY
, context
.dragEndY
);
362 top
= Math
.max(top
, plotArea
.y
);
363 bottom
= Math
.min(bottom
, plotArea
.y
+ plotArea
.h
);
365 g
.doZoomY_(top
, bottom
);
367 context
.cancelNextDblclick
= true;
369 if (context
.zoomMoved
) g
.clearZoomRect_();
371 context
.dragStartX
= null;
372 context
.dragStartY
= null;
378 Dygraph
.Interaction
.startTouch
= function(event
, g
, context
) {
379 event
.preventDefault(); // touch browsers are all nice.
380 if (event
.touches
.length
> 1) {
381 // If the user ever puts two fingers down, it's not a double tap.
382 context
.startTimeForDoubleTapMs
= null;
386 for (var i
= 0; i
< event
.touches
.length
; i
++) {
387 var t
= event
.touches
[i
];
388 // we dispense with 'dragGetX_' because all touchBrowsers support pageX
392 dataX
: g
.toDataXCoord(t
.pageX
),
393 dataY
: g
.toDataYCoord(t
.pageY
)
394 // identifier: t.identifier
397 context
.initialTouches
= touches
;
399 if (touches
.length
== 1) {
400 // This is just a swipe.
401 context
.initialPinchCenter
= touches
[0];
402 context
.touchDirections
= { x
: true, y
: true };
403 } else if (touches
.length
>= 2) {
404 // It's become a pinch!
405 // In case there are 3+ touches, we ignore all but the "first" two.
407 // only screen coordinates can be averaged (data coords could be log scale).
408 context
.initialPinchCenter
= {
409 pageX
: 0.5 * (touches
[0].pageX
+ touches
[1].pageX
),
410 pageY
: 0.5 * (touches
[0].pageY
+ touches
[1].pageY
),
412 // TODO(danvk): remove
413 dataX
: 0.5 * (touches
[0].dataX
+ touches
[1].dataX
),
414 dataY
: 0.5 * (touches
[0].dataY
+ touches
[1].dataY
)
417 // Make pinches in a 45-degree swath around either axis 1-dimensional zooms.
418 var initialAngle
= 180 / Math
.PI
* Math
.atan2(
419 context
.initialPinchCenter
.pageY
- touches
[0].pageY
,
420 touches
[0].pageX
- context
.initialPinchCenter
.pageX
);
422 // use symmetry to get it into the first quadrant.
423 initialAngle
= Math
.abs(initialAngle
);
424 if (initialAngle
> 90) initialAngle
= 90 - initialAngle
;
426 context
.touchDirections
= {
427 x
: (initialAngle
< (90 - 45/2)),
428 y
: (initialAngle
> 45/2)
432 // save the full x & y ranges.
433 context
.initialRange
= {
442 Dygraph
.Interaction
.moveTouch
= function(event
, g
, context
) {
443 // If the tap moves, then it's definitely not part of a double-tap.
444 context
.startTimeForDoubleTapMs
= null;
447 for (i
= 0; i
< event
.touches
.length
; i
++) {
448 var t
= event
.touches
[i
];
454 var initialTouches
= context
.initialTouches
;
458 // old and new centers.
459 var c_init
= context
.initialPinchCenter
;
460 if (touches
.length
== 1) {
464 pageX
: 0.5 * (touches
[0].pageX
+ touches
[1].pageX
),
465 pageY
: 0.5 * (touches
[0].pageY
+ touches
[1].pageY
)
469 // this is the "swipe" component
470 // we toss it out for now, but could use it in the future.
472 pageX
: c_now
.pageX
- c_init
.pageX
,
473 pageY
: c_now
.pageY
- c_init
.pageY
475 var dataWidth
= context
.initialRange
.x
[1] - context
.initialRange
.x
[0];
476 var dataHeight
= context
.initialRange
.y
[0] - context
.initialRange
.y
[1];
477 swipe
.dataX
= (swipe
.pageX
/ g
.plotter_
.area
.w
) * dataWidth
;
478 swipe
.dataY
= (swipe
.pageY
/ g
.plotter_
.area
.h
) * dataHeight
;
481 // The residual bits are usually split into scale & rotate bits, but we split
482 // them into x-scale and y-scale bits.
483 if (touches
.length
== 1) {
486 } else if (touches
.length
>= 2) {
487 var initHalfWidth
= (initialTouches
[1].pageX
- c_init
.pageX
);
488 xScale
= (touches
[1].pageX
- c_now
.pageX
) / initHalfWidth
;
490 var initHalfHeight
= (initialTouches
[1].pageY
- c_init
.pageY
);
491 yScale
= (touches
[1].pageY
- c_now
.pageY
) / initHalfHeight
;
494 // Clip scaling to [1/8, 8] to prevent too much blowup
.
495 xScale
= Math
.min(8, Math
.max(0.125, xScale
));
496 yScale
= Math
.min(8, Math
.max(0.125, yScale
));
499 if (context
.touchDirections
.x
) {
501 c_init
.dataX
- swipe
.dataX
+ (context
.initialRange
.x
[0] - c_init
.dataX
) / xScale
,
502 c_init
.dataX
- swipe
.dataX
+ (context
.initialRange
.x
[1] - c_init
.dataX
) / xScale
507 if (context
.touchDirections
.y
) {
508 for (i
= 0; i
< 1 /*g.axes_.length*/; i
++) {
509 var axis
= g
.axes_
[i
];
510 var logscale
= g
.attributes_
.getForAxis("logscale", i
);
512 // TODO(danvk): implement
515 c_init
.dataY
- swipe
.dataY
+ (context
.initialRange
.y
[0] - c_init
.dataY
) / yScale
,
516 c_init
.dataY
- swipe
.dataY
+ (context
.initialRange
.y
[1] - c_init
.dataY
) / yScale
525 // We only call zoomCallback on zooms, not pans, to mirror desktop behavior.
526 if (didZoom
&& touches
.length
> 1 && g
.getFunctionOption('zoomCallback')) {
527 var viewWindow
= g
.xAxisRange();
528 g
.getFunctionOption("zoomCallback")(viewWindow
[0], viewWindow
[1], g
.yAxisRanges());
535 Dygraph
.Interaction
.endTouch
= function(event
, g
, context
) {
536 if (event
.touches
.length
!== 0) {
537 // this is effectively a "reset"
538 Dygraph
.Interaction
.startTouch(event
, g
, context
);
539 } else if (event
.changedTouches
.length
== 1) {
540 // Could be part of a "double tap"
541 // The heuristic here is that it's a double-tap if the two touchend events
542 // occur within 500ms and within a 50x50 pixel box.
543 var now
= new Date().getTime();
544 var t
= event
.changedTouches
[0];
545 if (context
.startTimeForDoubleTapMs
&&
546 now
- context
.startTimeForDoubleTapMs
< 500 &&
547 context
.doubleTapX
&& Math
.abs(context
.doubleTapX
- t
.screenX
) < 50 &&
548 context
.doubleTapY
&& Math
.abs(context
.doubleTapY
- t
.screenY
) < 50) {
551 context
.startTimeForDoubleTapMs
= now
;
552 context
.doubleTapX
= t
.screenX
;
553 context
.doubleTapY
= t
.screenY
;
559 * Default interation model for dygraphs. You can refer to specific elements of
560 * this when constructing your own interaction model, e.g.:
562 * interactionModel: {
563 * mousedown: Dygraph.defaultInteractionModel.mousedown
567 Dygraph
.Interaction
.defaultModel
= {
568 // Track the beginning of drag events
569 mousedown
: function(event
, g
, context
) {
570 // Right-click should not initiate a zoom.
571 if (event
.button
&& event
.button
== 2) return;
573 context
.initializeMouseDown(event
, g
, context
);
575 if (event
.altKey
|| event
.shiftKey
) {
576 Dygraph
.startPan(event
, g
, context
);
578 Dygraph
.startZoom(event
, g
, context
);
582 // Draw zoom rectangles when the mouse is down and the user moves around
583 mousemove
: function(event
, g
, context
) {
584 if (context
.isZooming
) {
585 Dygraph
.moveZoom(event
, g
, context
);
586 } else if (context
.isPanning
) {
587 Dygraph
.movePan(event
, g
, context
);
591 mouseup
: function(event
, g
, context
) {
592 if (context
.isZooming
) {
593 Dygraph
.endZoom(event
, g
, context
);
594 } else if (context
.isPanning
) {
595 Dygraph
.endPan(event
, g
, context
);
599 touchstart
: function(event
, g
, context
) {
600 Dygraph
.Interaction
.startTouch(event
, g
, context
);
602 touchmove
: function(event
, g
, context
) {
603 Dygraph
.Interaction
.moveTouch(event
, g
, context
);
605 touchend
: function(event
, g
, context
) {
606 Dygraph
.Interaction
.endTouch(event
, g
, context
);
609 // Temporarily cancel the dragging event when the mouse leaves the graph
610 mouseout
: function(event
, g
, context
) {
611 if (context
.isZooming
) {
612 context
.dragEndX
= null;
613 context
.dragEndY
= null;
618 // Disable zooming out if panning.
619 dblclick
: function(event
, g
, context
) {
620 if (context
.cancelNextDblclick
) {
621 context
.cancelNextDblclick
= false;
624 if (event
.altKey
|| event
.shiftKey
) {
631 Dygraph
.DEFAULT_ATTRS
.interactionModel
= Dygraph
.Interaction
.defaultModel
;
633 // old ways of accessing these methods/properties
634 Dygraph
.defaultInteractionModel
= Dygraph
.Interaction
.defaultModel
;
635 Dygraph
.endZoom
= Dygraph
.Interaction
.endZoom
;
636 Dygraph
.moveZoom
= Dygraph
.Interaction
.moveZoom
;
637 Dygraph
.startZoom
= Dygraph
.Interaction
.startZoom
;
638 Dygraph
.endPan
= Dygraph
.Interaction
.endPan
;
639 Dygraph
.movePan
= Dygraph
.Interaction
.movePan
;
640 Dygraph
.startPan
= Dygraph
.Interaction
.startPan
;
642 Dygraph
.Interaction
.nonInteractiveModel_
= {
643 mousedown
: function(event
, g
, context
) {
644 context
.initializeMouseDown(event
, g
, context
);
646 mouseup
: function(event
, g
, context
) {
647 // TODO(danvk): this logic is repeated in Dygraph.Interaction.endZoom
648 context
.dragEndX
= Dygraph
.dragGetX_(event
, context
);
649 context
.dragEndY
= Dygraph
.dragGetY_(event
, context
);
650 var regionWidth
= Math
.abs(context
.dragEndX
- context
.dragStartX
);
651 var regionHeight
= Math
.abs(context
.dragEndY
- context
.dragStartY
);
653 if (regionWidth
< 2 && regionHeight
< 2 &&
654 g
.lastx_
!== undefined
&& g
.lastx_
!= -1) {
655 Dygraph
.Interaction
.treatMouseOpAsClick(g
, event
, context
);
660 // Default interaction model when using the range selector.
661 Dygraph
.Interaction
.dragIsPanInteractionModel
= {
662 mousedown
: function(event
, g
, context
) {
663 context
.initializeMouseDown(event
, g
, context
);
664 Dygraph
.startPan(event
, g
, context
);
666 mousemove
: function(event
, g
, context
) {
667 if (context
.isPanning
) {
668 Dygraph
.movePan(event
, g
, context
);
671 mouseup
: function(event
, g
, context
) {
672 if (context
.isPanning
) {
673 Dygraph
.endPan(event
, g
, context
);