3 * Copyright 2011 Paul Felix (paul.eric.felix@gmail.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
6 /*global Dygraph:false,TouchEvent:false */
9 * @fileoverview This file contains the RangeSelector plugin used to provide
10 * a timeline range selector widget for dygraphs.
13 Dygraph
.Plugins
.RangeSelector
= (function() {
15 /*jshint globalstrict: true */
16 /*global Dygraph:false */
19 var rangeSelector
= function() {
20 this.isIE_
= /MSIE/.test(navigator
.userAgent
) && !window
.opera
;
21 this.hasTouchInterface_
= typeof(TouchEvent
) != 'undefined';
22 this.isMobileDevice_
= /mobile|android/gi.test(navigator
.appVersion
);
23 this.interfaceCreated_
= false;
26 rangeSelector
.prototype.toString
= function() {
27 return "RangeSelector Plugin";
30 rangeSelector
.prototype.activate
= function(dygraph
) {
31 this.dygraph_
= dygraph
;
32 this.isUsingExcanvas_
= dygraph
.isUsingExcanvas_
;
33 if (this.getOption_('showRangeSelector')) {
34 this.createInterface_();
37 layout
: this.reserveSpace_
,
38 predraw
: this.renderStaticLayer_
,
39 didDrawChart
: this.renderInteractiveLayer_
43 rangeSelector
.prototype.destroy
= function() {
44 this.bgcanvas_
= null;
45 this.fgcanvas_
= null;
46 this.leftZoomHandle_
= null;
47 this.rightZoomHandle_
= null;
48 this.iePanOverlay_
= null;
51 //------------------------------------------------------------------
53 //------------------------------------------------------------------
55 rangeSelector
.prototype.getOption_
= function(name
) {
56 return this.dygraph_
.getOption(name
);
59 rangeSelector
.prototype.setDefaultOption_
= function(name
, value
) {
60 return this.dygraph_
.attrs_
[name
] = value
;
65 * Creates the range selector elements and adds them to the graph.
67 rangeSelector
.prototype.createInterface_
= function() {
68 this.createCanvases_();
69 if (this.isUsingExcanvas_
) {
70 this.createIEPanOverlay_();
72 this.createZoomHandles_();
73 this.initInteraction_();
75 // Range selector and animatedZooms have a bad interaction. See issue 359.
76 if (this.getOption_('animatedZooms')) {
77 this.dygraph_
.warn('Animated zooms and range selector are not compatible; disabling animatedZooms.');
78 this.dygraph_
.updateOptions({animatedZooms
: false}, true);
81 this.interfaceCreated_
= true;
87 * Adds the range selector to the graph.
89 rangeSelector
.prototype.addToGraph_
= function() {
90 var graphDiv
= this.graphDiv_
= this.dygraph_
.graphDiv
;
91 graphDiv
.appendChild(this.bgcanvas_
);
92 graphDiv
.appendChild(this.fgcanvas_
);
93 graphDiv
.appendChild(this.leftZoomHandle_
);
94 graphDiv
.appendChild(this.rightZoomHandle_
);
99 * Removes the range selector from the graph.
101 rangeSelector
.prototype.removeFromGraph_
= function() {
102 var graphDiv
= this.graphDiv_
;
103 graphDiv
.removeChild(this.bgcanvas_
);
104 graphDiv
.removeChild(this.fgcanvas_
);
105 graphDiv
.removeChild(this.leftZoomHandle_
);
106 graphDiv
.removeChild(this.rightZoomHandle_
);
107 this.graphDiv_
= null;
112 * Called by Layout to allow range selector to reserve its space.
114 rangeSelector
.prototype.reserveSpace_
= function(e
) {
115 if (this.getOption_('showRangeSelector')) {
116 e
.reserveSpaceBottom(this.getOption_('rangeSelectorHeight') + 4);
122 * Renders the static portion of the range selector at the predraw stage.
124 rangeSelector
.prototype.renderStaticLayer_
= function() {
125 if (!this.updateVisibility_()) {
129 this.drawStaticLayer_();
134 * Renders the interactive portion of the range selector after the chart has been drawn.
136 rangeSelector
.prototype.renderInteractiveLayer_
= function() {
137 if (!this.updateVisibility_() || this.isChangingRange_
) {
140 this.placeZoomHandles_();
141 this.drawInteractiveLayer_();
146 * Check to see if the range selector is enabled/disabled and update visibility accordingly.
148 rangeSelector
.prototype.updateVisibility_
= function() {
149 var enabled
= this.getOption_('showRangeSelector');
151 if (!this.interfaceCreated_
) {
152 this.createInterface_();
153 } else if (!this.graphDiv_
|| !this.graphDiv_
.parentNode
) {
156 } else if (this.graphDiv_
) {
157 this.removeFromGraph_();
158 var dygraph
= this.dygraph_
;
159 setTimeout(function() { dygraph
.width_
= 0; dygraph
.resize(); }, 1);
166 * Resizes the range selector.
168 rangeSelector
.prototype.resize_
= function() {
169 function setElementRect(canvas
, rect
) {
170 canvas
.style
.top
= rect
.y
+ 'px';
171 canvas
.style
.left
= rect
.x
+ 'px';
172 canvas
.width
= rect
.w
;
173 canvas
.height
= rect
.h
;
174 canvas
.style
.width
= canvas
.width
+ 'px'; // for IE
175 canvas
.style
.height
= canvas
.height
+ 'px'; // for IE
178 var plotArea
= this.dygraph_
.layout_
.getPlotArea();
179 var xAxisLabelHeight
= this.getOption_('xAxisHeight') || (this.getOption_('axisLabelFontSize') + 2 * this.getOption_('axisTickSize'));
182 y
: plotArea
.y
+ plotArea
.h
+ xAxisLabelHeight
+ 4,
184 h
: this.getOption_('rangeSelectorHeight')
187 setElementRect(this.bgcanvas_
, this.canvasRect_
);
188 setElementRect(this.fgcanvas_
, this.canvasRect_
);
193 * Creates the background and foreground canvases.
195 rangeSelector
.prototype.createCanvases_
= function() {
196 this.bgcanvas_
= Dygraph
.createCanvas();
197 this.bgcanvas_
.className
= 'dygraph-rangesel-bgcanvas';
198 this.bgcanvas_
.style
.position
= 'absolute';
199 this.bgcanvas_
.style
.zIndex
= 9;
200 this.bgcanvas_ctx_
= Dygraph
.getContext(this.bgcanvas_
);
202 this.fgcanvas_
= Dygraph
.createCanvas();
203 this.fgcanvas_
.className
= 'dygraph-rangesel-fgcanvas';
204 this.fgcanvas_
.style
.position
= 'absolute';
205 this.fgcanvas_
.style
.zIndex
= 9;
206 this.fgcanvas_
.style
.cursor
= 'default';
207 this.fgcanvas_ctx_
= Dygraph
.getContext(this.fgcanvas_
);
212 * Creates overlay divs for IE/Excanvas so that mouse events are handled properly.
214 rangeSelector
.prototype.createIEPanOverlay_
= function() {
215 this.iePanOverlay_
= document
.createElement("div");
216 this.iePanOverlay_
.style
.position
= 'absolute';
217 this.iePanOverlay_
.style
.backgroundColor
= 'white';
218 this.iePanOverlay_
.style
.filter
= 'alpha(opacity=0)';
219 this.iePanOverlay_
.style
.display
= 'none';
220 this.iePanOverlay_
.style
.cursor
= 'move';
221 this.fgcanvas_
.appendChild(this.iePanOverlay_
);
226 * Creates the zoom handle elements.
228 rangeSelector
.prototype.createZoomHandles_
= function() {
229 var img
= new Image();
230 img
.className
= 'dygraph-rangesel-zoomhandle';
231 img
.style
.position
= 'absolute';
232 img
.style
.zIndex
= 10;
233 img
.style
.visibility
= 'hidden'; // Initially hidden so they don't show up in the wrong place.
234 img
.style
.cursor
= 'col-resize';
236 if (/MSIE 7/.test(navigator
.userAgent
)) { // IE7 doesn't support embedded src data.
239 img
.style
.backgroundColor
= 'white';
240 img
.style
.border
= '1px solid #333333'; // Just show box in IE7.
244 img
.src
= 'data:image/png;base64,' +
245 'iVBORw0KGgoAAAANSUhEUgAAAAkAAAAQCAYAAADESFVDAAAAAXNSR0IArs4c6QAAAAZiS0dEANAA' +
246 'zwDP4Z7KegAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAAd0SU1FB9sHGw0cMqdt1UwAAAAZdEVYdENv' +
247 'bW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAaElEQVQoz+3SsRFAQBCF4Z9WJM8KCDVwownl' +
248 '6YXsTmCUsyKGkZzcl7zkz3YLkypgAnreFmDEpHkIwVOMfpdi9CEEN2nGpFdwD03yEqDtOgCaun7s' +
249 'qSTDH32I1pQA2Pb9sZecAxc5r3IAb21d6878xsAAAAAASUVORK5CYII=';
252 if (this.isMobileDevice_
) {
257 this.leftZoomHandle_
= img
;
258 this.rightZoomHandle_
= img
.cloneNode(false);
263 * Sets up the interaction for the range selector.
265 rangeSelector
.prototype.initInteraction_
= function() {
267 var topElem
= this.isIE_
? document
: window
;
270 var isZooming
= false;
271 var isPanning
= false;
272 var dynamic
= !this.isMobileDevice_
&& !this.isUsingExcanvas_
;
274 // We cover iframes during mouse interactions. See comments in
275 // dygraph-utils.js for more info on why this is a good idea.
276 var tarp
= new Dygraph
.IFrameTarp();
278 // functions, defined below. Defining them this way (rather than with
279 // "function foo() {...}" makes JSHint happy.
280 var toXDataWindow
, onZoomStart
, onZoom
, onZoomEnd
, doZoom
, isMouseInPanZone
,
281 onPanStart
, onPan
, onPanEnd
, doPan
, onCanvasHover
;
283 // Touch event functions
284 var onZoomHandleTouchEvent
, onCanvasTouchEvent
, addTouchEvents
;
286 toXDataWindow
= function(zoomHandleStatus
) {
287 var xDataLimits
= self
.dygraph_
.xAxisExtremes();
288 var fact
= (xDataLimits
[1] - xDataLimits
[0])/self
.canvasRect_
.w
;
289 var xDataMin
= xDataLimits
[0] + (zoomHandleStatus
.leftHandlePos
- self
.canvasRect_
.x
)*fact
;
290 var xDataMax
= xDataLimits
[0] + (zoomHandleStatus
.rightHandlePos
- self
.canvasRect_
.x
)*fact
;
291 return [xDataMin
, xDataMax
];
294 onZoomStart
= function(e
) {
295 Dygraph
.cancelEvent(e
);
297 clientXLast
= e
.clientX
;
298 handle
= e
.target
? e
.target
: e
.srcElement
;
299 if (e
.type
=== 'mousedown' || e
.type
=== 'dragstart') {
300 // These events are removed manually.
301 Dygraph
.addEvent(topElem
, 'mousemove', onZoom
);
302 Dygraph
.addEvent(topElem
, 'mouseup', onZoomEnd
);
304 self
.fgcanvas_
.style
.cursor
= 'col-resize';
309 onZoom
= function(e
) {
313 Dygraph
.cancelEvent(e
);
315 var delX
= e
.clientX
- clientXLast
;
316 if (Math
.abs(delX
) < 4) {
319 clientXLast
= e
.clientX
;
322 var zoomHandleStatus
= self
.getZoomHandleStatus_();
324 if (handle
== self
.leftZoomHandle_
) {
325 newPos
= zoomHandleStatus
.leftHandlePos
+ delX
;
326 newPos
= Math
.min(newPos
, zoomHandleStatus
.rightHandlePos
- handle
.width
- 3);
327 newPos
= Math
.max(newPos
, self
.canvasRect_
.x
);
329 newPos
= zoomHandleStatus
.rightHandlePos
+ delX
;
330 newPos
= Math
.min(newPos
, self
.canvasRect_
.x
+ self
.canvasRect_
.w
);
331 newPos
= Math
.max(newPos
, zoomHandleStatus
.leftHandlePos
+ handle
.width
+ 3);
333 var halfHandleWidth
= handle
.width
/2;
334 handle
.style
.left
= (newPos
- halfHandleWidth
) + 'px';
335 self
.drawInteractiveLayer_();
337 // Zoom on the fly (if not using excanvas).
344 onZoomEnd
= function(e
) {
350 Dygraph
.removeEvent(topElem
, 'mousemove', onZoom
);
351 Dygraph
.removeEvent(topElem
, 'mouseup', onZoomEnd
);
352 self
.fgcanvas_
.style
.cursor
= 'default';
354 // If using excanvas, Zoom now.
361 doZoom
= function() {
363 var zoomHandleStatus
= self
.getZoomHandleStatus_();
364 self
.isChangingRange_
= true;
365 if (!zoomHandleStatus
.isZoomed
) {
366 self
.dygraph_
.resetZoom();
368 var xDataWindow
= toXDataWindow(zoomHandleStatus
);
369 self
.dygraph_
.doZoomXDates_(xDataWindow
[0], xDataWindow
[1]);
372 self
.isChangingRange_
= false;
376 isMouseInPanZone
= function(e
) {
377 if (self
.isUsingExcanvas_
) {
378 return e
.srcElement
== self
.iePanOverlay_
;
380 var rect
= self
.leftZoomHandle_
.getBoundingClientRect();
381 var leftHandleClientX
= rect
.left
+ rect
.width
/2;
382 rect
= self
.rightZoomHandle_
.getBoundingClientRect();
383 var rightHandleClientX
= rect
.left
+ rect
.width
/2;
384 return (e
.clientX
> leftHandleClientX
&& e
.clientX
< rightHandleClientX
);
388 onPanStart
= function(e
) {
389 if (!isPanning
&& isMouseInPanZone(e
) && self
.getZoomHandleStatus_().isZoomed
) {
390 Dygraph
.cancelEvent(e
);
392 clientXLast
= e
.clientX
;
393 if (e
.type
=== 'mousedown') {
394 // These events are removed manually.
395 Dygraph
.addEvent(topElem
, 'mousemove', onPan
);
396 Dygraph
.addEvent(topElem
, 'mouseup', onPanEnd
);
403 onPan
= function(e
) {
407 Dygraph
.cancelEvent(e
);
409 var delX
= e
.clientX
- clientXLast
;
410 if (Math
.abs(delX
) < 4) {
413 clientXLast
= e
.clientX
;
416 var zoomHandleStatus
= self
.getZoomHandleStatus_();
417 var leftHandlePos
= zoomHandleStatus
.leftHandlePos
;
418 var rightHandlePos
= zoomHandleStatus
.rightHandlePos
;
419 var rangeSize
= rightHandlePos
- leftHandlePos
;
420 if (leftHandlePos
+ delX
<= self
.canvasRect_
.x
) {
421 leftHandlePos
= self
.canvasRect_
.x
;
422 rightHandlePos
= leftHandlePos
+ rangeSize
;
423 } else if (rightHandlePos
+ delX
>= self
.canvasRect_
.x
+ self
.canvasRect_
.w
) {
424 rightHandlePos
= self
.canvasRect_
.x
+ self
.canvasRect_
.w
;
425 leftHandlePos
= rightHandlePos
- rangeSize
;
427 leftHandlePos
+= delX
;
428 rightHandlePos
+= delX
;
430 var halfHandleWidth
= self
.leftZoomHandle_
.width
/2;
431 self
.leftZoomHandle_
.style
.left
= (leftHandlePos
- halfHandleWidth
) + 'px';
432 self
.rightZoomHandle_
.style
.left
= (rightHandlePos
- halfHandleWidth
) + 'px';
433 self
.drawInteractiveLayer_();
435 // Do pan on the fly (if not using excanvas).
442 onPanEnd
= function(e
) {
447 Dygraph
.removeEvent(topElem
, 'mousemove', onPan
);
448 Dygraph
.removeEvent(topElem
, 'mouseup', onPanEnd
);
449 // If using excanvas, do pan now.
458 self
.isChangingRange_
= true;
459 self
.dygraph_
.dateWindow_
= toXDataWindow(self
.getZoomHandleStatus_());
460 self
.dygraph_
.drawGraph_(false);
462 self
.isChangingRange_
= false;
466 onCanvasHover
= function(e
) {
467 if (isZooming
|| isPanning
) {
470 var cursor
= isMouseInPanZone(e
) ? 'move' : 'default';
471 if (cursor
!= self
.fgcanvas_
.style
.cursor
) {
472 self
.fgcanvas_
.style
.cursor
= cursor
;
476 onZoomHandleTouchEvent
= function(e
) {
477 if (e
.type
== 'touchstart' && e
.targetTouches
.length
== 1) {
478 if (onZoomStart(e
.targetTouches
[0])) {
479 Dygraph
.cancelEvent(e
);
481 } else if (e
.type
== 'touchmove' && e
.targetTouches
.length
== 1) {
482 if (onZoom(e
.targetTouches
[0])) {
483 Dygraph
.cancelEvent(e
);
490 onCanvasTouchEvent
= function(e
) {
491 if (e
.type
== 'touchstart' && e
.targetTouches
.length
== 1) {
492 if (onPanStart(e
.targetTouches
[0])) {
493 Dygraph
.cancelEvent(e
);
495 } else if (e
.type
== 'touchmove' && e
.targetTouches
.length
== 1) {
496 if (onPan(e
.targetTouches
[0])) {
497 Dygraph
.cancelEvent(e
);
504 addTouchEvents
= function(elem
, fn
) {
505 var types
= ['touchstart', 'touchend', 'touchmove', 'touchcancel'];
506 for (var i
= 0; i
< types
.length
; i
++) {
507 self
.dygraph_
.addEvent(elem
, types
[i
], fn
);
511 this.setDefaultOption_('interactionModel', Dygraph
.Interaction
.dragIsPanInteractionModel
);
512 this.setDefaultOption_('panEdgeFraction', 0.0001);
514 var dragStartEvent
= window
.opera
? 'mousedown' : 'dragstart';
515 this.dygraph_
.addEvent(this.leftZoomHandle_
, dragStartEvent
, onZoomStart
);
516 this.dygraph_
.addEvent(this.rightZoomHandle_
, dragStartEvent
, onZoomStart
);
518 if (this.isUsingExcanvas_
) {
519 this.dygraph_
.addEvent(this.iePanOverlay_
, 'mousedown', onPanStart
);
521 this.dygraph_
.addEvent(this.fgcanvas_
, 'mousedown', onPanStart
);
522 this.dygraph_
.addEvent(this.fgcanvas_
, 'mousemove', onCanvasHover
);
526 if (this.hasTouchInterface_
) {
527 addTouchEvents(this.leftZoomHandle_
, onZoomHandleTouchEvent
);
528 addTouchEvents(this.rightZoomHandle_
, onZoomHandleTouchEvent
);
529 addTouchEvents(this.fgcanvas_
, onCanvasTouchEvent
);
535 * Draws the static layer in the background canvas.
537 rangeSelector
.prototype.drawStaticLayer_
= function() {
538 var ctx
= this.bgcanvas_ctx_
;
539 ctx
.clearRect(0, 0, this.canvasRect_
.w
, this.canvasRect_
.h
);
541 this.drawMiniPlot_();
547 this.bgcanvas_ctx_
.lineWidth
= 1;
548 ctx
.strokeStyle
= 'gray';
550 ctx
.moveTo(margin
, margin
);
551 ctx
.lineTo(margin
, this.canvasRect_
.h
-margin
);
552 ctx
.lineTo(this.canvasRect_
.w
-margin
, this.canvasRect_
.h
-margin
);
553 ctx
.lineTo(this.canvasRect_
.w
-margin
, margin
);
560 * Draws the mini plot in the background canvas.
562 rangeSelector
.prototype.drawMiniPlot_
= function() {
563 var fillStyle
= this.getOption_('rangeSelectorPlotFillColor');
564 var strokeStyle
= this.getOption_('rangeSelectorPlotStrokeColor');
565 if (!fillStyle
&& !strokeStyle
) {
569 var stepPlot
= this.getOption_('stepPlot');
571 var combinedSeriesData
= this.computeCombinedSeriesAndLimits_();
572 var yRange
= combinedSeriesData
.yMax
- combinedSeriesData
.yMin
;
574 // Draw the mini plot.
575 var ctx
= this.bgcanvas_ctx_
;
578 var xExtremes
= this.dygraph_
.xAxisExtremes();
579 var xRange
= Math
.max(xExtremes
[1] - xExtremes
[0], 1.e
-30);
580 var xFact
= (this.canvasRect_
.w
- margin
)/xRange
;
581 var yFact
= (this.canvasRect_
.h
- margin
)/yRange
;
582 var canvasWidth
= this.canvasRect_
.w
- margin
;
583 var canvasHeight
= this.canvasRect_
.h
- margin
;
585 var prevX
= null, prevY
= null;
588 ctx
.moveTo(margin
, canvasHeight
);
589 for (var i
= 0; i
< combinedSeriesData
.data
.length
; i
++) {
590 var dataPoint
= combinedSeriesData
.data
[i
];
591 var x
= ((dataPoint
[0] !== null) ? ((dataPoint
[0] - xExtremes
[0])*xFact
) : NaN
);
592 var y
= ((dataPoint
[1] !== null) ? (canvasHeight
- (dataPoint
[1] - combinedSeriesData
.yMin
)*yFact
) : NaN
);
593 if (isFinite(x
) && isFinite(y
)) {
595 ctx
.lineTo(x
, canvasHeight
);
598 ctx
.lineTo(x
, prevY
);
607 ctx
.lineTo(x
, prevY
);
608 ctx
.lineTo(x
, canvasHeight
);
611 ctx
.lineTo(prevX
, canvasHeight
);
614 prevX
= prevY
= null;
617 ctx
.lineTo(canvasWidth
, canvasHeight
);
621 var lingrad
= this.bgcanvas_ctx_
.createLinearGradient(0, 0, 0, canvasHeight
);
622 lingrad
.addColorStop(0, 'white');
623 lingrad
.addColorStop(1, fillStyle
);
624 this.bgcanvas_ctx_
.fillStyle
= lingrad
;
629 this.bgcanvas_ctx_
.strokeStyle
= strokeStyle
;
630 this.bgcanvas_ctx_
.lineWidth
= 1.5;
637 * Computes and returns the combinded series data along with min/max for the mini plot.
638 * @return {Object} An object containing combinded series array, ymin, ymax.
640 rangeSelector
.prototype.computeCombinedSeriesAndLimits_
= function() {
641 var data
= this.dygraph_
.rawData_
;
642 var logscale
= this.getOption_('logscale');
644 // Create a combined series (average of all series values).
645 var combinedSeries
= [];
652 // Find out if data has multiple values per datapoint.
653 // Go to first data point that actually has values (see http://code.google.com/p/dygraphs/issues/detail
?id
=246)
654 for (i
= 0; i
< data
.length
; i
++) {
655 if (data
[i
].length
> 1 && data
[i
][1] !== null) {
656 mutipleValues
= typeof data
[i
][1] != 'number';
660 for (k
= 0; k
< data
[i
][1].length
; k
++) {
669 for (i
= 0; i
< data
.length
; i
++) {
670 var dataPoint
= data
[i
];
674 for (k
= 0; k
< sum
.length
; k
++) {
675 sum
[k
] = count
[k
] = 0;
681 for (j
= 1; j
< dataPoint
.length
; j
++) {
682 if (this.dygraph_
.visibility()[j
-1]) {
685 for (k
= 0; k
< sum
.length
; k
++) {
687 if (y
=== null || isNaN(y
)) continue;
693 if (y
=== null || isNaN(y
)) continue;
701 for (k
= 0; k
< sum
.length
; k
++) {
709 combinedSeries
.push([xVal
, yVal
]);
712 // Account for roll period, fractions.
713 combinedSeries
= this.dygraph_
.rollingAverage(combinedSeries
, this.dygraph_
.rollPeriod_
);
715 if (typeof combinedSeries
[0][1] != 'number') {
716 for (i
= 0; i
< combinedSeries
.length
; i
++) {
717 yVal
= combinedSeries
[i
][1];
718 combinedSeries
[i
][1] = yVal
[0];
722 // Compute the y range.
723 var yMin
= Number
.MAX_VALUE
;
724 var yMax
= -Number
.MAX_VALUE
;
725 for (i
= 0; i
< combinedSeries
.length
; i
++) {
726 yVal
= combinedSeries
[i
][1];
727 if (yVal
!== null && isFinite(yVal
) && (!logscale
|| yVal
> 0)) {
728 yMin
= Math
.min(yMin
, yVal
);
729 yMax
= Math
.max(yMax
, yVal
);
733 // Convert Y data to log scale if needed.
734 // Also, expand the Y range to compress the mini plot a little.
735 var extraPercent
= 0.25;
737 yMax
= Dygraph
.log10(yMax
);
738 yMax
+= yMax
*extraPercent
;
739 yMin
= Dygraph
.log10(yMin
);
740 for (i
= 0; i
< combinedSeries
.length
; i
++) {
741 combinedSeries
[i
][1] = Dygraph
.log10(combinedSeries
[i
][1]);
745 var yRange
= yMax
- yMin
;
746 if (yRange
<= Number
.MIN_VALUE
) {
747 yExtra
= yMax
*extraPercent
;
749 yExtra
= yRange
*extraPercent
;
755 return {data
: combinedSeries
, yMin
: yMin
, yMax
: yMax
};
760 * Places the zoom handles in the proper position based on the current X data window.
762 rangeSelector
.prototype.placeZoomHandles_
= function() {
763 var xExtremes
= this.dygraph_
.xAxisExtremes();
764 var xWindowLimits
= this.dygraph_
.xAxisRange();
765 var xRange
= xExtremes
[1] - xExtremes
[0];
766 var leftPercent
= Math
.max(0, (xWindowLimits
[0] - xExtremes
[0])/xRange
);
767 var rightPercent
= Math
.max(0, (xExtremes
[1] - xWindowLimits
[1])/xRange
);
768 var leftCoord
= this.canvasRect_
.x
+ this.canvasRect_
.w
*leftPercent
;
769 var rightCoord
= this.canvasRect_
.x
+ this.canvasRect_
.w
*(1 - rightPercent
);
770 var handleTop
= Math
.max(this.canvasRect_
.y
, this.canvasRect_
.y
+ (this.canvasRect_
.h
- this.leftZoomHandle_
.height
)/2);
771 var halfHandleWidth
= this.leftZoomHandle_
.width
/2;
772 this.leftZoomHandle_
.style
.left
= (leftCoord
- halfHandleWidth
) + 'px';
773 this.leftZoomHandle_
.style
.top
= handleTop
+ 'px';
774 this.rightZoomHandle_
.style
.left
= (rightCoord
- halfHandleWidth
) + 'px';
775 this.rightZoomHandle_
.style
.top
= this.leftZoomHandle_
.style
.top
;
777 this.leftZoomHandle_
.style
.visibility
= 'visible';
778 this.rightZoomHandle_
.style
.visibility
= 'visible';
783 * Draws the interactive layer in the foreground canvas.
785 rangeSelector
.prototype.drawInteractiveLayer_
= function() {
786 var ctx
= this.fgcanvas_ctx_
;
787 ctx
.clearRect(0, 0, this.canvasRect_
.w
, this.canvasRect_
.h
);
789 var width
= this.canvasRect_
.w
- margin
;
790 var height
= this.canvasRect_
.h
- margin
;
791 var zoomHandleStatus
= this.getZoomHandleStatus_();
793 ctx
.strokeStyle
= 'black';
794 if (!zoomHandleStatus
.isZoomed
) {
796 ctx
.moveTo(margin
, margin
);
797 ctx
.lineTo(margin
, height
);
798 ctx
.lineTo(width
, height
);
799 ctx
.lineTo(width
, margin
);
801 if (this.iePanOverlay_
) {
802 this.iePanOverlay_
.style
.display
= 'none';
805 var leftHandleCanvasPos
= Math
.max(margin
, zoomHandleStatus
.leftHandlePos
- this.canvasRect_
.x
);
806 var rightHandleCanvasPos
= Math
.min(width
, zoomHandleStatus
.rightHandlePos
- this.canvasRect_
.x
);
808 ctx
.fillStyle
= 'rgba(240, 240, 240, 0.6)';
809 ctx
.fillRect(0, 0, leftHandleCanvasPos
, this.canvasRect_
.h
);
810 ctx
.fillRect(rightHandleCanvasPos
, 0, this.canvasRect_
.w
- rightHandleCanvasPos
, this.canvasRect_
.h
);
813 ctx
.moveTo(margin
, margin
);
814 ctx
.lineTo(leftHandleCanvasPos
, margin
);
815 ctx
.lineTo(leftHandleCanvasPos
, height
);
816 ctx
.lineTo(rightHandleCanvasPos
, height
);
817 ctx
.lineTo(rightHandleCanvasPos
, margin
);
818 ctx
.lineTo(width
, margin
);
821 if (this.isUsingExcanvas_
) {
822 this.iePanOverlay_
.style
.width
= (rightHandleCanvasPos
- leftHandleCanvasPos
) + 'px';
823 this.iePanOverlay_
.style
.left
= leftHandleCanvasPos
+ 'px';
824 this.iePanOverlay_
.style
.height
= height
+ 'px';
825 this.iePanOverlay_
.style
.display
= 'inline';
832 * Returns the current zoom handle position information.
833 * @return {Object} The zoom handle status.
835 rangeSelector
.prototype.getZoomHandleStatus_
= function() {
836 var halfHandleWidth
= this.leftZoomHandle_
.width
/2;
837 var leftHandlePos
= parseFloat(this.leftZoomHandle_
.style
.left
) + halfHandleWidth
;
838 var rightHandlePos
= parseFloat(this.rightZoomHandle_
.style
.left
) + halfHandleWidth
;
840 leftHandlePos
: leftHandlePos
,
841 rightHandlePos
: rightHandlePos
,
842 isZoomed
: (leftHandlePos
- 1 > this.canvasRect_
.x
|| rightHandlePos
+ 1 < this.canvasRect_
.x
+this.canvasRect_
.w
)
846 return rangeSelector
;