SMART datagrid v.1 > Classes > GridColumn
Column Group including this column.
If it is the top column, it will return root column object within Grid. group property returns null about the top column.
var col = grid.columnByName('coladdr');
if (col) {
var group = col.parent();
group.setOrientation('vertical');
}