Hi @mbdoy123,
Accordingly to our “Binding to data” section in our documentation, the dataset defined like that will be parsed as an array of objects. That means, { id: 1, value: 'First', row: 0, col: 0, ...otherProps } will be one row with the following columns [id, value, row, col, (otherProps' keys)].
properties like row, col, id or others you can store in CellMeta object (see cell/cells options).
Value has to be mapped as an array of arrays or an array of objects - as we mentioned in “Binding to data” documentation.
Thank you for answer!
But I wanted to know if we can set the coordinates of the cells, by the fields of our date;
For example:
We have a row in our data like
{id:1, row:0, col:1, value:'value', ...otherProps}
can we make this object a cell:
| A | B |
1 | | value |
2 |
I hope I asked the question correctly, thank you very much