Version 1
Common Interface IHeaderRowOptions GrapeCity DataViewsJS Interface

IHeaderRowOptions Interface

Defines options for headerRow configuration

Heirarchy

  • IHeaderRowOptions

Properties

Optional height

height: number

Specifies the header row height

Optional position

position: "above" | "below"

Specifies the header row position. The value can be 'above' or 'below', Default value is 'below'

Optional separateColumn

separateColumn: boolean

Specifies whether to show the entire header or show individual columns on the header row

Optional visible

visible: boolean

Specifies whether the header row is visible

Methods

Optional renderer

  • renderer(data: any, container: HTMLElement): void
  • Specifies the default header row renderer. If there is column header template, header row will use the template as layout structure

    Parameters

    • data: any

      row data record

    • container: HTMLElement

      row container

    Returns void