Interface SortField

interface SortField {
    ascending?: boolean;
    dataOptions?: any;
    offset?: number;
}

Hierarchy (view full)

Properties

ascending?: boolean

Ascending is smallest to largest

Default Value

true
dataOptions?: any

Additional options for sorting

Remarks

  • Excel has a matchCase flag but we use Intl.CollatorOptions
  • Excel has Normal | 'TextAsNumber' but we use Intl.CollatorOptions
offset?: number

0-based offset for the header based on orientation

Default Value

The first index of the selected range