Home | History | Annotate | Download | only in loopback_test

Lines Matching refs:DataTable

21 //   tracker.dataTable(); // returns the recorded values. In this case
28 var dataTable = new google.visualization.DataTable();
29 var timeColumnIndex = dataTable.addColumn('datetime', 'Time');
38 this.dataTable = function() { return dataTable; }
42 // sample into a column named varName in the dataTable.
44 var columnIndex = dataTable.addColumn('number', varName);
49 dataTable.setCell(rowIndex, columnIndex, sample);
69 var rowIndex = dataTable.addRow();
70 dataTable.setCell(rowIndex, timeColumnIndex, result[0].timestamp);