Merge pull request #465 from danvk/callback-this
[dygraphs.git] / gviz-api.js
CommitLineData
faa608cf
DV
1// Copyright 2009 Google Inc.
2// All Rights Reserved.
3
4/**
5 * This file exposes the external Google Visualization API.
6 *
7 * The file can be used to enable auto complete of objects and methods provided by the
8 * Google Visualization API, and for easier exploration of the API.
9 *
10 * To enable auto complete in a development environment - copy the file into the project
11 * you are working on where the development tool you are using can index the file.
12 *
13 * Disclaimer: there may be missing classes and methods and the file may
14 * be updated and/or changed. For the most up to date API reference please visit:
15 * {@link http://code.google.com/intl/iw/apis/visualization/documentation/reference.html}
16 */
17
18var google = {};
19google.visualization = {};
20
21/** @constructor */
22google.visualization.DataTable = function(opt_data, opt_version) {};
23google.visualization.DataTable.prototype.getNumberOfRows = function() {};
24google.visualization.DataTable.prototype.getNumberOfColumns = function() {};
25google.visualization.DataTable.prototype.clone = function() {};
26google.visualization.DataTable.prototype.getColumnId = function(columnIndex) {};
27google.visualization.DataTable.prototype.getColumnIndex = function(columnId) {};
28google.visualization.DataTable.prototype.getColumnLabel = function(columnIndex) {};
29google.visualization.DataTable.prototype.getColumnPattern = function(columnIndex) {};
30google.visualization.DataTable.prototype.getColumnRole = function(columnIndex) {};
31google.visualization.DataTable.prototype.getColumnType = function(columnIndex) {};
32google.visualization.DataTable.prototype.getValue = function(rowIndex, columnIndex) {};
33google.visualization.DataTable.prototype.getFormattedValue = function(rowIndex, columnIndex) {};
34google.visualization.DataTable.prototype.getProperty = function(rowIndex, columnIndex, property) {};
35google.visualization.DataTable.prototype.getProperties = function(rowIndex, columnIndex) {};
36google.visualization.DataTable.prototype.getTableProperties = function() {};
37google.visualization.DataTable.prototype.getTableProperty = function(property) {};
38google.visualization.DataTable.prototype.setTableProperties = function(properties) {};
39google.visualization.DataTable.prototype.setTableProperty = function(property, value) {};
40google.visualization.DataTable.prototype.setValue = function(rowIndex, columnIndex, value) {};
41google.visualization.DataTable.prototype.setFormattedValue = function(rowIndex, columnIndex, formattedValue) {};
42google.visualization.DataTable.prototype.setProperties = function(rowIndex, columnIndex, properties) {};
43google.visualization.DataTable.prototype.setProperty = function(rowIndex, columnIndex, property, value) {};
44google.visualization.DataTable.prototype.setCell = function(rowIndex, columnIndex, opt_value, opt_formattedValue, opt_properties) {};
45google.visualization.DataTable.prototype.setRowProperties = function(rowIndex, properties) {};
46google.visualization.DataTable.prototype.setRowProperty = function(rowIndex, property, value) {};
47google.visualization.DataTable.prototype.getRowProperty = function(rowIndex, property) {};
48google.visualization.DataTable.prototype.getRowProperties = function(rowIndex) {};
49google.visualization.DataTable.prototype.setColumnLabel = function(columnIndex, newLabel) {};
50google.visualization.DataTable.prototype.setColumnProperties = function(columnIndex, properties) {};
51google.visualization.DataTable.prototype.setColumnProperty = function(columnIndex, property, value) {};
52google.visualization.DataTable.prototype.getColumnProperty = function(columnIndex, property) {};
53google.visualization.DataTable.prototype.getColumnProperties = function(columnIndex) {};
54google.visualization.DataTable.prototype.insertColumn = function(atColIndex, type, opt_label, opt_id) {};
55google.visualization.DataTable.prototype.addColumn = function(type, opt_label, opt_id) {};
56google.visualization.DataTable.prototype.insertRows = function(atRowIndex, numOrArray) {};
57google.visualization.DataTable.prototype.addRows = function(numOrArray) {};
58google.visualization.DataTable.prototype.addRow = function(opt_cellArray) {};
59google.visualization.DataTable.prototype.getColumnRange = function(columnIndex) {};
60google.visualization.DataTable.prototype.getSortedRows = function(sortColumns) {};
61google.visualization.DataTable.prototype.sort = function(sortColumns) {};
62google.visualization.DataTable.prototype.getDistinctValues = function(column) {};
63google.visualization.DataTable.prototype.getFilteredRows = function(columnFilters) {};
64google.visualization.DataTable.prototype.removeRows = function(fromRowIndex, numRows) {};
65google.visualization.DataTable.prototype.removeRow = function(rowIndex) {};
66google.visualization.DataTable.prototype.removeColumns = function(fromColIndex, numCols) {};
67google.visualization.DataTable.prototype.removeColumn = function(colIndex) {};
68
69/** @return {string} JSON representation. */
70google.visualization.DataTable.prototype.toJSON = function() {};
71
72/** @constructor */
73google.visualization.QueryResponse = function(responseObj) {};
74google.visualization.QueryResponse.getVersionFromResponse = function(responseObj) {};
75google.visualization.QueryResponse.prototype.getVersion = function() {};
76google.visualization.QueryResponse.prototype.getExecutionStatus = function() {};
77google.visualization.QueryResponse.prototype.isError = function() {};
78google.visualization.QueryResponse.prototype.hasWarning = function() {};
79google.visualization.QueryResponse.prototype.containsReason = function(reason) {};
80google.visualization.QueryResponse.prototype.getDataSignature = function() {};
81google.visualization.QueryResponse.prototype.getDataTable = function() {};
82google.visualization.QueryResponse.prototype.getReasons = function() {};
83google.visualization.QueryResponse.prototype.getMessage = function() {};
84google.visualization.QueryResponse.prototype.getDetailedMessage = function() {};
85
86/** @constructor */
87google.visualization.Query = function(dataSourceUrl, opt_options) {};
88google.visualization.Query.refreshAllQueries = function() {};
89google.visualization.Query.setResponse = function(response) {};
90google.visualization.Query.prototype.setRefreshInterval = function(intervalSeconds) {};
91google.visualization.Query.prototype.send = function(responseHandler) {};
92google.visualization.Query.prototype.makeRequest = function(responseHandler, opt_params) {};
93google.visualization.Query.prototype.abort = function() {};
94google.visualization.Query.prototype.setTimeout = function(timeoutSeconds) {};
95google.visualization.Query.prototype.setRefreshable = function(refreshable) {};
96google.visualization.Query.prototype.setQuery = function(queryString) {};
97
98google.visualization.errors = {};
99google.visualization.errors.addError = function(container, message, opt_detailedMessage, opt_options) {};
100google.visualization.errors.removeAll = function(container) {};
101google.visualization.errors.addErrorFromQueryResponse = function(container, response) {};
102google.visualization.errors.removeError = function(id) {};
103google.visualization.errors.getContainer = function(errorId) {};
104
105google.visualization.events = {};
106google.visualization.events.addListener = function(eventSource, eventName, eventHandler) {};
107google.visualization.events.trigger = function(eventSource, eventName, eventDetails) {};
108google.visualization.events.removeListener = function(listener) {};
109google.visualization.events.removeAllListeners = function(eventSource) {};
110
111/** @constructor */
112google.visualization.DataView = function(dataTable) {};
113google.visualization.DataView.fromJSON = function(dataTable, view) {};
114google.visualization.DataView.prototype.setColumns = function(colIndices) {};
115google.visualization.DataView.prototype.setRows = function(arg0, opt_arg1) {};
116google.visualization.DataView.prototype.getViewColumns = function() {};
117google.visualization.DataView.prototype.getViewRows = function() {};
118google.visualization.DataView.prototype.hideColumns = function(colIndices) {};
119google.visualization.DataView.prototype.hideRows = function(arg0, opt_arg1) {};
120google.visualization.DataView.prototype.getViewColumnIndex = function(tableColumnIndex) {};
121google.visualization.DataView.prototype.getViewRowIndex = function(tableRowIndex) {};
122google.visualization.DataView.prototype.getTableColumnIndex = function(viewColumnIndex) {};
123google.visualization.DataView.prototype.getUnderlyingTableColumnIndex = function(viewColumnIndex) {};
124google.visualization.DataView.prototype.getTableRowIndex = function(viewRowIndex) {};
125google.visualization.DataView.prototype.getUnderlyingTableRowIndex = function(viewRowIndex) {};
126google.visualization.DataView.prototype.getNumberOfRows = function() {};
127google.visualization.DataView.prototype.getNumberOfColumns = function() {};
128google.visualization.DataView.prototype.getColumnId = function(columnIndex) {};
129google.visualization.DataView.prototype.getColumnIndex = function(columnId) {};
130google.visualization.DataView.prototype.getColumnLabel = function(columnIndex) {};
131google.visualization.DataView.prototype.getColumnPattern = function(columnIndex) {};
132google.visualization.DataView.prototype.getColumnRole = function(columnIndex) {};
133google.visualization.DataView.prototype.getColumnType = function(columnIndex) {};
134google.visualization.DataView.prototype.getValue = function(rowIndex, columnIndex) {};
135google.visualization.DataView.prototype.getFormattedValue = function(rowIndex, columnIndex) {};
136google.visualization.DataView.prototype.getProperty = function(rowIndex, columnIndex, property) {};
137google.visualization.DataView.prototype.getColumnProperty = function(columnIndex, property) {};
138google.visualization.DataView.prototype.getColumnProperties = function(columnIndex) {};
139google.visualization.DataView.prototype.getTableProperty = function(property) {};
140google.visualization.DataView.prototype.getTableProperties = function() {};
141google.visualization.DataView.prototype.getRowProperty = function(rowIndex, property) {};
142google.visualization.DataView.prototype.getRowProperties = function(rowIndex) {};
143google.visualization.DataView.prototype.getColumnRange = function(columnIndex) {};
144google.visualization.DataView.prototype.getDistinctValues = function(columnIndex) {};
145google.visualization.DataView.prototype.getSortedRows = function(sortColumns) {};
146google.visualization.DataView.prototype.getFilteredRows = function(columnFilters) {};
147google.visualization.DataView.prototype.toDataTable = function() {};
148
149/** @return {string} JSON representation. */
150google.visualization.DataView.prototype.toJSON = function() {};
151
152/** @constructor */
153google.visualization.ArrowFormat = function(opt_options) {};
154google.visualization.ArrowFormat.prototype.format = function(dataTable, columnIndex) {};
155
156/** @constructor */
157google.visualization.BarFormat = function(opt_options) {};
158google.visualization.BarFormat.prototype.format = function(dataTable, columnIndex) {};
159
160/** @constructor */
161google.visualization.ColorFormat = function() {};
162google.visualization.ColorFormat.prototype.addRange = function(from, to, color, bgcolor) {};
163google.visualization.ColorFormat.prototype.addGradientRange = function(from, to, color, fromBgColor, toBgColor) {};
164google.visualization.ColorFormat.prototype.format = function(dataTable, columnIndex) {};
165
166/** @constructor */
167google.visualization.DateFormat = function(opt_options) {};
168google.visualization.DateFormat.prototype.format = function(dataTable, columnIndex) {};
169google.visualization.DateFormat.prototype.formatValue = function(value) {};
170
171/** @constructor */
172google.visualization.NumberFormat = function(opt_options) {};
173google.visualization.NumberFormat.prototype.format = function(dataTable, columnIndex) {};
174google.visualization.NumberFormat.prototype.formatValue = function(value) {};
175google.visualization.NumberFormat.DECIMAL_SEP;
176google.visualization.NumberFormat.GROUP_SEP;
177google.visualization.NumberFormat.DECIMAL_PATTERN;
178
179/** @constructor */
180google.visualization.PatternFormat = function(pattern) {};
181google.visualization.PatternFormat.prototype.format = function(dataTable, srcColumnIndices, opt_dstColumnIndex) {};
182
183/** @constructor */
184google.visualization.GadgetHelper = function() {};
185google.visualization.GadgetHelper.prototype.createQueryFromPrefs = function(prefs) {};
186google.visualization.GadgetHelper.prototype.validateResponse = function(response) {};
187
188/** @constructor */
189google.visualization.AnnotatedTimeLine = function(container) {};
190google.visualization.AnnotatedTimeLine.prototype.draw = function(data, opt_options) {};
191google.visualization.AnnotatedTimeLine.prototype.getSelection = function() {};
192google.visualization.AnnotatedTimeLine.prototype.getVisibleChartRange = function() {};
193google.visualization.AnnotatedTimeLine.prototype.setVisibleChartRange = function(firstDate, lastDate, opt_animate) {};
194google.visualization.AnnotatedTimeLine.prototype.showDataColumns = function(columnIndexes) {};
195google.visualization.AnnotatedTimeLine.prototype.hideDataColumns = function(columnIndexes) {};
196
197/** @constructor */
198google.visualization.AreaChart = function(container) {};
199google.visualization.AreaChart.prototype.draw = function(data, opt_options, opt_state) {};
200google.visualization.AreaChart.prototype.clearChart = function() {};
201google.visualization.AreaChart.prototype.getSelection = function() {};
202google.visualization.AreaChart.prototype.setSelection = function(selection) {};
203
204/** @constructor */
205google.visualization.BarChart = function(container) {};
206google.visualization.BarChart.prototype.draw = function(data, opt_options, opt_state) {};
207google.visualization.BarChart.prototype.clearChart = function() {};
208google.visualization.BarChart.prototype.getSelection = function() {};
209google.visualization.BarChart.prototype.setSelection = function(selection) {};
210
211/** @constructor */
212google.visualization.BubbleChart = function(container) {};
213google.visualization.BubbleChart.prototype.draw = function(data, opt_options, opt_state) {};
214google.visualization.BubbleChart.prototype.clearChart = function() {};
215google.visualization.BubbleChart.prototype.getSelection = function() {};
216google.visualization.BubbleChart.prototype.setSelection = function(selection) {};
217
218/** @constructor */
219google.visualization.CandlestickChart = function(container) {};
220google.visualization.CandlestickChart.prototype.draw = function(data, opt_options, opt_state) {};
221google.visualization.CandlestickChart.prototype.clearChart = function() {};
222google.visualization.CandlestickChart.prototype.getSelection = function() {};
223google.visualization.CandlestickChart.prototype.setSelection = function(selection) {};
224
225/** @constructor */
226google.visualization.ColumnChart = function(container) {};
227google.visualization.ColumnChart.prototype.draw = function(data, opt_options, opt_state) {};
228google.visualization.ColumnChart.prototype.clearChart = function() {};
229google.visualization.ColumnChart.prototype.getSelection = function() {};
230google.visualization.ColumnChart.prototype.setSelection = function(selection) {};
231
232/** @constructor */
233google.visualization.ComboChart = function(container) {};
234google.visualization.ComboChart.prototype.draw = function(data, opt_options, opt_state) {};
235google.visualization.ComboChart.prototype.clearChart = function() {};
236google.visualization.ComboChart.prototype.getSelection = function() {};
237google.visualization.ComboChart.prototype.setSelection = function(selection) {};
238
239/** @constructor */
240google.visualization.Gauge = function(container) {};
241google.visualization.Gauge.prototype.draw = function(dataTable, opt_options) {};
242google.visualization.Gauge.prototype.clearChart = function() {};
243
244/** @constructor */
245google.visualization.GeoChart = function(container) {};
246google.visualization.GeoChart.mapExists = function(userOptions) {};
247google.visualization.GeoChart.prototype.clearChart = function() {};
248google.visualization.GeoChart.prototype.draw = function(dataTable, userOptions, opt_state) {};
249google.visualization.GeoChart.prototype.getSelection = function() {};
250google.visualization.GeoChart.prototype.setSelection = function(selection) {};
251
252/** @constructor */
253google.visualization.GeoMap = function(container) {};
254google.visualization.GeoMap.clickOnRegion = function(id, zoomLevel, segmentBy, instanceIndex) {};
255google.visualization.GeoMap.prototype.draw = function(dataTable, opt_options) {};
256google.visualization.GeoMap.prototype.getSelection = function() {};
257google.visualization.GeoMap.prototype.setSelection = function(selection) {};
258
259/** @constructor */
260google.visualization.Map = function(container) {};
261google.visualization.Map.prototype.draw = function(dataTable, opt_options) {};
262google.visualization.Map.prototype.getSelection = function() {};
263google.visualization.Map.prototype.setSelection = function(selection) {};
264
265/** @constructor */
266google.visualization.ImageAreaChart = function(container) {};
267google.visualization.ImageAreaChart.prototype.draw = function(data, opt_options) {};
268
269/** @constructor */
270google.visualization.ImageBarChart = function(container) {};
271google.visualization.ImageBarChart.prototype.draw = function(data, opt_options) {};
272
273/** @constructor */
274google.visualization.ImageCandlestickChart = function(container) {};
275google.visualization.ImageCandlestickChart.prototype.draw = function(data, opt_options) {};
276
277/** @constructor */
278google.visualization.ImageChart = function(container) {};
279google.visualization.ImageChart.prototype.draw = function(data, opt_options) {};
280
281/** @constructor */
282google.visualization.ImageLineChart = function(container) {};
283google.visualization.ImageLineChart.prototype.draw = function(data, opt_options) {};
284
285/** @constructor */
286google.visualization.ImagePieChart = function(container) {};
287google.visualization.ImagePieChart.prototype.draw = function(data, opt_options) {};
288
289/** @constructor */
290google.visualization.ImageSparkLine = function(container, opt_domHelper) {};
291google.visualization.ImageSparkLine.prototype.draw = function(dataTable, opt_options) {};
292google.visualization.ImageSparkLine.prototype.getSelection = function() {};
293google.visualization.ImageSparkLine.prototype.setSelection = function(selection) {};
294
295/** @constructor */
296google.visualization.IntensityMap = function(container) {};
297google.visualization.IntensityMap.prototype.draw = function(dataTable, opt_options) {};
298google.visualization.IntensityMap.prototype.getSelection = function() {};
299google.visualization.IntensityMap.prototype.setSelection = function(selection) {};
300
301/** @constructor */
302google.visualization.LineChart = function(container) {};
303google.visualization.LineChart.prototype.draw = function(data, opt_options, opt_state) {};
304google.visualization.LineChart.prototype.clearChart = function() {};
305google.visualization.LineChart.prototype.getSelection = function() {};
306google.visualization.LineChart.prototype.setSelection = function(selection) {};
307
308/** @constructor */
309google.visualization.MotionChart = function(container) {};
310google.visualization.MotionChart.prototype.draw = function(dataTable, opt_options) {};
311google.visualization.MotionChart.prototype.getState = function() {};
312
313/** @constructor */
314google.visualization.OrgChart = function(container) {};
315google.visualization.OrgChart.prototype.draw = function(dataTable, opt_options) {};
316google.visualization.OrgChart.prototype.getSelection = function() {};
317google.visualization.OrgChart.prototype.setSelection = function(selection) {};
318google.visualization.OrgChart.prototype.getCollapsedNodes = function() {};
319google.visualization.OrgChart.prototype.getChildrenIndexes = function(rowInd) {};
320google.visualization.OrgChart.prototype.collapse = function(rowInd, collapse) {};
321
322/** @constructor */
323google.visualization.PieChart = function(container) {};
324google.visualization.PieChart.prototype.draw = function(data, opt_options, opt_state) {};
325google.visualization.PieChart.prototype.clearChart = function() {};
326google.visualization.PieChart.prototype.getSelection = function() {};
327google.visualization.PieChart.prototype.setSelection = function(selection) {};
328
329/** @constructor */
330google.visualization.ScatterChart = function(container) {};
331google.visualization.ScatterChart.prototype.draw = function(data, opt_options, opt_state) {};
332google.visualization.ScatterChart.prototype.clearChart = function() {};
333google.visualization.ScatterChart.prototype.getSelection = function() {};
334google.visualization.ScatterChart.prototype.setSelection = function(selection) {};
335
336/** @constructor */
337google.visualization.SparklineChart = function(container) {};
338google.visualization.SparklineChart.prototype.draw = function(data, opt_options, opt_state) {};
339google.visualization.SparklineChart.prototype.clearChart = function() {};
340google.visualization.SparklineChart.prototype.getSelection = function() {};
341google.visualization.SparklineChart.prototype.setSelection = function(selection) {};
342
343/** @constructor */
344google.visualization.SteppedAreaChart = function(container) {};
345google.visualization.SteppedAreaChart.prototype.draw = function(data, opt_options, opt_state) {};
346google.visualization.SteppedAreaChart.prototype.clearChart = function() {};
347google.visualization.SteppedAreaChart.prototype.getSelection = function() {};
348google.visualization.SteppedAreaChart.prototype.setSelection = function(selection) {};
349
350/** @constructor */
351google.visualization.Table = function(container) {};
352google.visualization.Table.prototype.draw = function(dataTable, opt_options) {};
353google.visualization.Table.prototype.clearChart = function() {};
354google.visualization.Table.prototype.getSortInfo = function() {};
355google.visualization.Table.prototype.getSelection = function() {};
356google.visualization.Table.prototype.setSelection = function(selection) {};
357
358/** @constructor */
359google.visualization.TreeMap = function(container) {};
360google.visualization.TreeMap.prototype.draw = function(dataTable, opt_options) {};
361google.visualization.TreeMap.prototype.clearChart = function() {};
362google.visualization.TreeMap.prototype.getSelection = function() {};
363google.visualization.TreeMap.prototype.setSelection = function(selection) {};
364
365google.visualization.drawToolbar = function(container, components) {};
366
367/** @constructor */
368google.visualization.ChartWrapper = function(opt_specification) {};
369google.visualization.ChartWrapper.prototype.draw = function(opt_container) {};
370google.visualization.ChartWrapper.prototype.getDataSourceUrl = function() {};
371google.visualization.ChartWrapper.prototype.getDataTable = function() {};
372google.visualization.ChartWrapper.prototype.getChartName = function() {};
373google.visualization.ChartWrapper.prototype.getChartType = function() {};
374google.visualization.ChartWrapper.prototype.getContainerId = function() {};
375google.visualization.ChartWrapper.prototype.getQuery = function() {};
376google.visualization.ChartWrapper.prototype.getRefreshInterval = function() {};
377google.visualization.ChartWrapper.prototype.getView = function() {};
378google.visualization.ChartWrapper.prototype.getOption = function(key, opt_default) {};
379google.visualization.ChartWrapper.prototype.getOptions = function() {};
380google.visualization.ChartWrapper.prototype.setDataSourceUrl = function(dataSourceUrl) {};
381google.visualization.ChartWrapper.prototype.setDataTable = function(dataTable) {};
382google.visualization.ChartWrapper.prototype.setChartName = function(chartName) {};
383google.visualization.ChartWrapper.prototype.setChartType = function(chartType) {};
384google.visualization.ChartWrapper.prototype.setContainerId = function(containerId) {};
385google.visualization.ChartWrapper.prototype.setQuery = function(query) {};
386google.visualization.ChartWrapper.prototype.setRefreshInterval = function(refreshInterval) {};
387google.visualization.ChartWrapper.prototype.setView = function(view) {};
388google.visualization.ChartWrapper.prototype.setOption = function(key, value) {};
389google.visualization.ChartWrapper.prototype.setOptions = function(options) {};
390
391/** @return {string} JSON representation. */
392google.visualization.ChartWrapper.prototype.toJSON = function() {};
393
394/** @constructor */
395google.visualization.ControlWrapper = function(opt_specification) {};
396google.visualization.ControlWrapper.prototype.draw = function(opt_container) {};
397google.visualization.ControlWrapper.prototype.toJSON = function() {};
398google.visualization.ControlWrapper.prototype.getDataSourceUrl = function() {};
399google.visualization.ControlWrapper.prototype.getDataTable = function() {};
400google.visualization.ControlWrapper.prototype.getControlName = function() {};
401google.visualization.ControlWrapper.prototype.getControlType = function() {};
402google.visualization.ControlWrapper.prototype.getContainerId = function() {};
403google.visualization.ControlWrapper.prototype.getQuery = function() {};
404google.visualization.ControlWrapper.prototype.getRefreshInterval = function() {};
405google.visualization.ControlWrapper.prototype.getView = function() {};
406google.visualization.ControlWrapper.prototype.getOption = function(key, opt_default) {};
407google.visualization.ControlWrapper.prototype.getOptions = function() {};
408google.visualization.ControlWrapper.prototype.setDataSourceUrl = function(dataSourceUrl) {};
409google.visualization.ControlWrapper.prototype.setDataTable = function(dataTable) {};
410google.visualization.ControlWrapper.prototype.setControlName = function(controlName) {};
411google.visualization.ControlWrapper.prototype.setControlType = function(controlType) {};
412google.visualization.ControlWrapper.prototype.setContainerId = function(containerId) {};
413google.visualization.ControlWrapper.prototype.setQuery = function(query) {};
414google.visualization.ControlWrapper.prototype.setRefreshInterval = function(refreshInterval) {};
415google.visualization.ControlWrapper.prototype.setView = function(view) {};
416google.visualization.ControlWrapper.prototype.setOption = function(key, value) {};
417google.visualization.ControlWrapper.prototype.setOptions = function(options) {};
418
419// NOTE: I (danvk): commented this out because of compiler warnings.
420/** @return {string} JSON representation. */
421// google.visualization.ChartWrapper.prototype.toJSON = function() {};
422
423/** @constructor */
424google.visualization.ChartEditor = function(opt_config) {};
425google.visualization.ChartEditor.prototype.openDialog = function(specification, opt_options) {};
426google.visualization.ChartEditor.prototype.getChartWrapper = function() {};
427google.visualization.ChartEditor.prototype.setChartWrapper = function(chartWrapper) {};
428google.visualization.ChartEditor.prototype.closeDialog = function() {};
429
430/** @constructor */
431google.visualization.Dashboard = function(container) {};
432google.visualization.Dashboard.prototype.bind = function(controls, participants) {};
433google.visualization.Dashboard.prototype.draw = function(dataTable) {};
434
435/** @constructor */
436google.visualization.StringFilter = function(container) {};
437google.visualization.StringFilter.prototype.draw = function(dataTable, opt_options, opt_state) {};
438google.visualization.StringFilter.prototype.applyFilter = function() {};
439google.visualization.StringFilter.prototype.getState = function() {};
440google.visualization.StringFilter.prototype.resetControl = function() {};
441
442/** @constructor */
443google.visualization.NumberRangeFilter = function(container) {};
444google.visualization.NumberRangeFilter.prototype.draw = function(dataTable, opt_options, opt_state) {};
445google.visualization.NumberRangeFilter.prototype.applyFilter = function() {};
446google.visualization.NumberRangeFilter.prototype.getState = function() {};
447google.visualization.NumberRangeFilter.prototype.resetControl = function() {};
448
449/** @constructor */
450google.visualization.CategoryFilter = function(container) {};
451google.visualization.CategoryFilter.prototype.draw = function(dataTable, opt_options, opt_state) {};
452google.visualization.CategoryFilter.prototype.applyFilter = function() {};
453google.visualization.CategoryFilter.prototype.getState = function() {};
454google.visualization.CategoryFilter.prototype.resetControl = function() {};
455
456/** @constructor */
457google.visualization.ChartRangeFilter = function(container) {};
458google.visualization.ChartRangeFilter.prototype.draw = function(dataTable, opt_options, opt_state) {};
459google.visualization.ChartRangeFilter.prototype.applyFilter = function() {};
460google.visualization.ChartRangeFilter.prototype.getState = function() {};
461google.visualization.ChartRangeFilter.prototype.resetControl = function() {};