SMART datagrid v.1 > Classes > ScrollBar
Specify display start location of scroll bar by ScrollBarIndent constant.
Defaults to ScrollBarIndent.NONE.
// Display scroll bar after fixed row.
grid.vscrollBar().setBarIndent(DataLudi.ScrollBarIndent.FIXED);
// or,
grid.setOptions({
vscrollBar: {
barIndent: "header"
},
hscrollBar: {
barIndent: "fixed"
}
});