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