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