5.0
API
Types
Column

Definition

type Column = {
  colIndex: number;
  width: string | number;
  minWidth?: string | number;
  resizable?: boolean;
  reorderable?: boolean;
};

Properties

NameTypeDescription
colIndexnumberThe index of the column.
widthstring | numberThe width of the column.
minWidthstring | numberThe minimum width of the column.
resizableboolean (optional)Indicates if the column is resizable.
reorderableboolean (optional)Indicates if the column can be reordered.