SMART datagrid v1.4 > Reporting > Classes > PrintItem
Tile에 포함될 때 아이템이 표시되는 셀의 수직(행) 위치. 
수평(컬럼) 위치는 col로 지정한다.
기본값은 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"
        }]
    };