data
Two dimensional array containing the original table data (prior to grouping and aggregation) If no grouping or summarization is defined for the table, the 'data' property is the same as the 'table' property. Otherwise, 'data' holds the raw data and 'table' holds the summarized data. The data can be referenced using the row number as the first array index and the column number as the second array index.
Type
two dimensional array
Example
var total = 0;
for(var row = 1; row < data.length; row++) {
for(var col = 0; col < data.size; col++) {
total = total + data[row][col];
}
}
See Also
Accessing Table Data, for information about working with table data.
| << table.size | © 1996-2013 InetSoft Technology Corporation (v11.4) | data.length >> |