Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GridCSSProperties

Hierarchy

Index

Properties

colEnd?: string | number

The column that the cell should stop at. When this is undefined, it will just appear in normal order within the grid and span only 1 column. If the colSpan property was provided, this will be ignored.

colSpan?: number

The number of columns that the cell should span. If this value is provided, it will be used instead of the colEnd property.

Note: If this value is larger than the number of columns allowed in the current grid, it will shrink all the other columns.

colStart?: string | number

The column that the cell should start at. When this is undefined, it will just appear in normal order within the grid.

rowEnd?: string | number

The row that the cell should end at. This is a nice way to be able to reorder cells within your grid but will be ignored if the rowSpan property is provided.

rowSpan?: number

The number of rows that a cell should span. If this value is provided, it will be used instead of the rowEnd property. When this is undefined, it will span 1 row as normal.

rowStart?: string | number

The row that the cell should start at. This is a nice way to be able to reorder cells within your grid.

Generated using TypeDoc