Skip to content

moveColumn

moves a column to a different position

function moveColumn(
// the source column id
id: string,
// the target index
index: number
): void
//makes the "year" column first
mygrid.moveColumn("year", 0);

Articles

API