Represents a single row of data in a DataTable, where each property corresponds to a column.
const dataRow: DataRow = { column1: 'value1', column2: 42, column3: true, // other columns...}; Copy
const dataRow: DataRow = { column1: 'value1', column2: 42, column3: true, // other columns...};
Generated using TypeDoc
Represents a single row of data in a DataTable, where each property corresponds to a column.