SMART datagrid v.1 > Reporting > Classes > PrintItem
The horizontal (column) location of the cell in which is displayed the item when it is contained in Tile.
The vertical (row) location is specified as row.
Defaults to 0.
var tile = {
type: "tile",
cols: 5,
rows: 5,
items: [{
col: 0,
row: 0,
text: "Cell 0-0"
}, {
col: 1,
row: 0,
text: "Cell 0-1"
}]
};