1 /*global Gallery,Dygraph,data */
5 name
: 'Annotations with Native format',
6 setup
: function(parent
) {
8 "<p>This test demonstrates how annotations can be used with " +
9 "<a href='http://dygraphs.com/data.html#array'>native-format</a> data.</p>" +
10 "<div id='demodiv'></div>";
14 document
.getElementById("demodiv"),
16 [ new Date("2011/11/01"), 100 ],
17 [ new Date("2011/11/02"), 200 ],
18 [ new Date("2011/11/03"), 300 ],
19 [ new Date("2011/11/04"), 100 ],
20 [ new Date("2011/11/05"), 200 ],
21 [ new Date("2011/11/06"), 300 ],
22 [ new Date("2011/11/07"), 200 ],
23 [ new Date("2011/11/08"), 100 ]
26 labels
: [ 'Date', 'Value' ]
32 x
: Date
.parse('2011/11/04'),