4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>UTC date labels
</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>
17 <h2>UTC date and time labels
</h2>
19 <p>This shows how date ticks and labels may be generated according to local
20 time (default) or UTC with the option
<code>labelsUTC
</code>.
</p>
22 <p>72 hours of random hourly data since
2009-Jul-
23 18:
00 UTC
23 according to local time (top) and UTC (bottom):
</p>
25 <div id=
"div_loc" style=
"width:600px; height:200px;"></div>
26 <div id=
"div_utc" style=
"width:600px; height:200px;"></div>
28 <p>Please note the offset between the respective ticks in both plots.
29 It should match your local time zone offset.
</p>
31 <p>You can also check it by hovering over corresponding points and comparing
34 <p>Try different zoom levels to show that ticks are always placed at nice
37 <script type=
"text/javascript">
38 var data = (function() {
39 var rand10 = function () { return Math.round(
10 * Math.random()); };
41 for (var y =
2009, m =
6, d =
23, hh =
18, n=
0; n <
72; n++) {
42 a.push([new Date(Date.UTC(y, m, d, hh + n,
0,
0)), rand10()]);
47 document.getElementById(
"div_loc"),
50 labels: ['local time', 'random']
54 document.getElementById(
"div_utc"),
58 labels: ['UTC', 'random']