CellConfig: {
    column: number;
    height: number;
    metadata: Metadata;
    region: CellRegion;
    row: number;
    value: any;
    width: number;
    x: number;
    y: number;
}

An object which holds the configuration data for a cell.

Type declaration

  • Readonly column: number

    The column index of the cell.

  • Readonly height: number

    The height of the cell rectangle, in viewport pixels.

  • Readonly metadata: Metadata

    The metadata for the cell.

  • Readonly region: CellRegion

    The region for the cell.

  • Readonly row: number

    The row index of the cell.

  • Readonly value: any

    The value for the cell.

  • Readonly width: number

    The width of the cell rectangle, in viewport pixels.

  • Readonly x: number

    The X position of the cell rectangle, in viewport coordinates.

  • Readonly y: number

    The Y position of the cell rectangle, in viewport coordinates.