Add test suite for DygraphOptions object. Fix broken method in it.
[dygraphs.git] / dygraph-externs.js
1 /**
2 * @param {Object} dict
3 * @return {!Array.<string>}
4 */
5 function printStackTrace(dict) {}
6
7
8 /**
9 * @constructor
10 */
11 function G_vmlCanvasManager() {}
12
13 /**
14 * @param {!HTMLCanvasElement} canvas
15 */
16 G_vmlCanvasManager.initElement = function(canvas) {};
17
18 // For IE
19 /**
20 * @param {string} type
21 * @param {Object} fn
22 */
23 Element.prototype.detachEvent = function(type, fn) {};
24
25
26 /**
27 * @typedef {function(
28 * (number|Date),
29 * number,
30 * function(string):*,
31 * (Dygraph|undefined)
32 * ):string}
33 */
34 var AxisLabelFormatter;
35
36
37 /**
38 * @typedef {function(number,function(string),Dygraph):string}
39 */
40 var ValueFormatter;
41
42
43 /**
44 * @typedef {Array.<Array.<string|number|Array.<number>>>}
45 */
46 var DygraphDataArray;
47
48 /**
49 * @constructor
50 */
51 function GVizDataTable() {}
52
53 // TODO(danvk): move the Dygraph definitions out of here once I closure-ify dygraphs.js
54 /**
55 * @param {!HTMLDivElement|string} div
56 * @param {DygraphDataArray|
57 * GVizDataTable|
58 * string|
59 * function():(DygraphDataArray|GVizDataTable|string)} file
60 * @param {Object} attrs
61 * @constructor
62 */
63 function Dygraph(div, file, attrs) {}
64
65 /**
66 * @constructor
67 */
68 function DygraphLayout() {}
69
70 /**
71 * @type {Array}
72 */
73 DygraphLayout.prototype.datasets;
74
75 /**
76 * @type {DygraphLayout}
77 */
78 Dygraph.prototype.layout_;
79
80 /** @type {Array.<{elem:Element,type:string,fn:function(!Event):(boolean|undefined|null)}>} */
81 Dygraph.prototype.registeredEvents_;
82
83 /** @type {Object} */
84 Dygraph.DEFAULT_ATTRS;