AI-generated Key Takeaways
-
DataTableBuilder facilitates the creation of DataTable objects by defining columns and adding rows sequentially.
-
Columns are defined using
addColumn
with specified data type and label, and rows are added usingaddRow
with corresponding values. -
build
method finalizes the DataTable construction and returns the resulting object. -
setValue
allows modification of individual cell values within the table by specifying row, column, and the new value. -
DataTableBuilder uses a chaining pattern, where method calls can be linked for streamlined table construction.
Builder of DataTable objects. Building a data table consists of first specifying its columns, and then adding its rows, one at a time. Example:
const data = Charts.newDataTable() .addColumn(Charts.ColumnType.STRING, 'Month') .addColumn(Charts.ColumnType.NUMBER, 'In Store') .addColumn(Charts.ColumnType.NUMBER, 'Online') .addRow(['January', 10, 1]) .addRow(['February', 12, 1]) .addRow(['March', 20, 2]) .addRow(['April', 25, 3]) .addRow(['May', 30, 4]) .build();
Methods
Method | Return type | Brief description |
---|---|---|
add | Data | Adds a column to the data table. |
add | Data | Adds a row to the data table. |
build() | Data | Builds and returns a data table. |
set | Data | Sets a specific value in the table. |
Detailed documentation
addColumn(type, label)
Adds a column to the data table. Columns will be added from 0 to n.
The first column is often used by charts for labels (for instance, X-axis labels on line charts, or slice labels in pie charts). The other columns are often used for data and therefore often require numeric values.
Parameters
Name | Type | Description |
---|---|---|
type | Column | type of data in the column (number, string, or date) |
label | String | label of the column (it's used for chart legends). |
Return
Data
— this builder, for chaining.
addRow(values)
Adds a row to the data table.
Parameters
Name | Type | Description |
---|---|---|
values | Object[] | values for the row, specified in the same order that the columns are entered. |
Return
Data
— this builder, for chaining.
build()
setValue(row, column, value)
Sets a specific value in the table.
You may set a value before adding the column to the data table. However, unless the column is added at some point, the value will be ignored.
Not all column values need to be filled in. Those missing will be considered null
.
Parameters
Name | Type | Description |
---|---|---|
row | Integer | the row index (the first row has index 0) |
column | Integer | the column index (the first column has index 0) |
value | Object | the value of the table cell (should have the right type for the column). |
Return
Data
— this builder, for chaining