Commit | Line | Data |
---|---|---|
cbe41be1 DV |
1 | /** |
2 | * @license | |
3 | * Copyright 2012 Dan Vanderkam (danvdk@gmail.com) | |
4 | * MIT-licensed (http://opensource.org/licenses/MIT) | |
5 | */ | |
0cd1ad15 | 6 | /*global Dygraph:false */ |
cbe41be1 DV |
7 | |
8 | Dygraph.Plugins.Grid = (function() { | |
9 | ||
10 | /* | |
11 | ||
12 | Current bits of jankiness: | |
a353dfe3 DV |
13 | - Direct layout access |
14 | - Direct area access | |
cbe41be1 DV |
15 | |
16 | */ | |
17 | ||
18 | "use strict"; | |
19 | ||
20 | ||
21 | /** | |
22 | * Draws the gridlines, i.e. the gray horizontal & vertical lines running the | |
23 | * length of the chart. | |
24 | * | |
25 | * @constructor | |
26 | */ | |
27 | var grid = function() { | |
28 | }; | |
29 | ||
30 | grid.prototype.toString = function() { | |
31 | return "Gridline Plugin"; | |
32 | }; | |
33 | ||
34 | grid.prototype.activate = function(g) { | |
35 | return { | |
98eb4713 | 36 | willDrawChart: this.willDrawChart |
cbe41be1 DV |
37 | }; |
38 | }; | |
39 | ||
98eb4713 | 40 | grid.prototype.willDrawChart = function(e) { |
cbe41be1 DV |
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. | |
43 | var g = e.dygraph; | |
44 | var ctx = e.drawingContext; | |
45 | var layout = g.layout_; | |
46 | var area = e.dygraph.plotter_.area; | |
47 | ||
48 | function halfUp(x) { return Math.round(x) + 0.5; } | |
49 | function halfDown(y){ return Math.round(y) - 0.5; } | |
50 | ||
51 | var x, y, i, ticks; | |
7f6a7190 | 52 | if (g.getOptionForAxis('drawGrid', 'y')) { |
e8b3c7b4 DE |
53 | var axes = ["y", "y2"]; |
54 | var strokeStyles = [], lineWidths = [], drawGrid = [], stroking = [], strokePattern = []; | |
55 | for (var i = 0; i < axes.length; i++) { | |
7f6a7190 | 56 | drawGrid[i] = g.getOptionForAxis('drawGrid', axes[i]); |
e8b3c7b4 DE |
57 | if (drawGrid[i]) { |
58 | strokeStyles[i] = g.getOptionForAxis('gridLineColor', axes[i]); | |
59 | lineWidths[i] = g.getOptionForAxis('gridLineWidth', axes[i]); | |
60 | strokePattern[i] = g.getOptionForAxis('gridLinePattern', axes[i]); | |
61 | stroking[i] = strokePattern[i] && (strokePattern[i].length >= 2); | |
9e906ae6 DE |
62 | } |
63 | } | |
cbe41be1 DV |
64 | ticks = layout.yticks; |
65 | ctx.save(); | |
e8b3c7b4 | 66 | // draw grids for the different y axes |
cbe41be1 | 67 | for (i = 0; i < ticks.length; i++) { |
9e906ae6 | 68 | var axis = ticks[i][0]; |
34fc91d4 | 69 | if(drawGrid[axis]) { |
9e906ae6 DE |
70 | if (stroking[axis]) { |
71 | ctx.installPattern(strokePattern[axis]); | |
72 | } | |
73 | ctx.strokeStyle = strokeStyles[axis]; | |
74 | ctx.lineWidth = lineWidths[axis]; | |
75 | ||
76 | x = halfUp(area.x); | |
77 | y = halfDown(area.y + ticks[i][1] * area.h); | |
78 | ctx.beginPath(); | |
79 | ctx.moveTo(x, y); | |
80 | ctx.lineTo(x + area.w, y); | |
81 | ctx.closePath(); | |
82 | ctx.stroke(); | |
83 | ||
84 | if (stroking[axis]) { | |
85 | ctx.uninstallPattern(); | |
86 | } | |
97adf46b | 87 | } |
cbe41be1 DV |
88 | } |
89 | ctx.restore(); | |
90 | } | |
91 | ||
e8b3c7b4 | 92 | // draw grid for x axis |
7f6a7190 | 93 | if (g.getOptionForAxis('drawGrid', 'x')) { |
cbe41be1 DV |
94 | ticks = layout.xticks; |
95 | ctx.save(); | |
e8b3c7b4 | 96 | var strokePattern = g.getOptionForAxis('gridLinePattern', 'x'); |
9e906ae6 DE |
97 | var stroking = strokePattern && (strokePattern.length >= 2); |
98 | if (stroking) { | |
99 | ctx.installPattern(strokePattern); | |
100 | } | |
e8b3c7b4 DE |
101 | ctx.strokeStyle = g.getOptionForAxis('gridLineColor', 'x'); |
102 | ctx.lineWidth = g.getOptionForAxis('gridLineWidth', 'x'); | |
cbe41be1 DV |
103 | for (i = 0; i < ticks.length; i++) { |
104 | x = halfUp(area.x + ticks[i][0] * area.w); | |
105 | y = halfDown(area.y + area.h); | |
106 | ctx.beginPath(); | |
107 | ctx.moveTo(x, y); | |
108 | ctx.lineTo(x, area.y); | |
109 | ctx.closePath(); | |
110 | ctx.stroke(); | |
111 | } | |
9e906ae6 | 112 | if (stroking) { |
34fc91d4 | 113 | ctx.uninstallPattern(); |
9e906ae6 | 114 | } |
cbe41be1 DV |
115 | ctx.restore(); |
116 | } | |
42a9ebb8 | 117 | }; |
cbe41be1 DV |
118 | |
119 | grid.prototype.destroy = function() { | |
120 | }; | |
121 | ||
122 | return grid; | |
123 | ||
124 | })(); |