3 * Copyright 2012 Dan Vanderkam (danvdk@gmail.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
6 /*global Dygraph:false */
8 Dygraph
.Plugins
.Grid
= (function() {
12 Current bits of jankiness:
13 - Direct layout access
22 * Draws the gridlines, i.e. the gray horizontal & vertical lines running the
23 * length of the chart.
27 var grid
= function() {
30 grid
.prototype.toString
= function() {
31 return "Gridline Plugin";
34 grid
.prototype.activate
= function(g
) {
36 willDrawChart
: this.willDrawChart
40 grid
.prototype.willDrawChart
= function(e
) {
41 // Draw the new X/Y grid
. Lines appear crisper when pixels are rounded to
42 // half-integers. This prevents them from drawing in two rows/cols.
44 var ctx
= e
.drawingContext
;
45 var layout
= g
.layout_
;
46 var area
= e
.dygraph
.plotter_
.area
;
48 function halfUp(x
) { return Math
.round(x
) + 0.5; }
49 function halfDown(y
){ return Math
.round(y
) - 0.5; }
52 if (g
.getOption('drawYGrid')) {
53 ticks
= layout
.yticks
;
55 ctx
.strokeStyle
= g
.getOption('gridLineColor');
56 ctx
.lineWidth
= g
.getOption('gridLineWidth');
57 for (i
= 0; i
< ticks
.length
; i
++) {
58 // TODO(danvk): allow secondary axes to draw a grid, too.
59 if (ticks
[i
][0] !== 0) continue;
61 y
= halfDown(area
.y
+ ticks
[i
][1] * area
.h
);
64 ctx
.lineTo(x
+ area
.w
, y
);
71 if (g
.getOption('drawXGrid')) {
72 ticks
= layout
.xticks
;
74 ctx
.strokeStyle
= g
.getOption('gridLineColor');
75 ctx
.lineWidth
= g
.getOption('gridLineWidth');
76 for (i
= 0; i
< ticks
.length
; i
++) {
77 x
= halfUp(area
.x
+ ticks
[i
][0] * area
.w
);
78 y
= halfDown(area
.y
+ area
.h
);
81 ctx
.lineTo(x
, area
.y
);
89 grid
.prototype.destroy
= function() {