4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>Custom underlay callback
</title>
7 <script type=
"text/javascript" src=
"../excanvas.js"></script>
10 For production (minified) code, use:
11 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
13 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
15 <script type=
"text/javascript" src=
"data.js"></script>
18 <p>Should draw a three-colored background, split horizontally at y:
2.25, and
19 again on the top at x:
19Nov:
</p>
20 <div id=
"div_g" style=
"width:600px; height:300px;"></div>
22 <div id=
"status" style=
"width:100%; height:200px;"></div>
24 <script type=
"text/javascript">
25 s = document.getElementById(
"status");
28 document.getElementById(
"div_g"),
34 underlayCallback: function(canvas, area, g) {
35 // Selecting a date in the middle of the graph.
36 var splitDate = new Date(
"2006-11-19").getTime();
37 var coords = g.toDomCoords(splitDate,
2.25);
39 // splitX and splitY are the coordinates on the canvas for (
2006-
11-
19,
2.25).
40 var splitX = coords[
0];
41 var splitY = coords[
1];
43 // The drawing area doesn't start at (
0,
0), it starts at (area.x, area.y).
44 // That's why we subtract them from splitX and splitY. This gives us the
45 // actual distance from the upper-left hand corder of the graph itself.
46 var leftSideWidth = splitX - area.x;
47 var rightSideWidth = area.w - leftSideWidth;
48 var topHeight = splitY - area.y;
49 var bottomHeight = area.h - topHeight;
51 // fillRect(x, y, width, height)
52 // Top section: y = (
2.25, +Infinity)
53 // left: (x <
2006-
11-
19)
54 canvas.fillStyle = 'lightblue';
55 canvas.fillRect(area.x, area.y, leftSideWidth, topHeight);
57 // right: (x
> 2006-
11-
19)
58 canvas.fillStyle = 'orange';
59 canvas.fillRect(splitX, area.y, rightSideWidth, topHeight);
61 // Bottom section: y = (-Infinity,
2.25)
62 canvas.fillStyle = 'pink';
63 canvas.fillRect(area.x, splitY, area.w, bottomHeight);