React DataGrid - SummaryTexts

Contains properties that specify text patterns for summary items.

import { SummaryTexts } from "devextreme/ui/data_grid"

avg

Specifies a pattern for the "avg" summary items when they are displayed in the parent column.

Type:

String

Default Value: 'Avg={0}'

avgOtherColumn

Specifies a pattern for the "avg" summary items displayed in a group row or in any other column rather than the parent one.

Type:

String

Default Value: 'Avg of {1} is {0}'

count

Specifies a pattern for the "count" summary items.

Type:

String

Default Value: 'Count={0}'

max

Specifies a pattern for the "max" summary items when they are displayed in the parent column.

Type:

String

Default Value: 'Max={0}'

maxOtherColumn

Specifies a pattern for the "max" summary items displayed in a group row or in any other column rather than the parent one.

Type:

String

Default Value: 'Max of {1} is {0}'

min

Specifies a pattern for the "min" summary items when they are displayed in the parent column.

Type:

String

Default Value: 'Min={0}'

minOtherColumn

Specifies a pattern for the "min" summary items displayed in a group row or in any other column rather than the parent one.

Type:

String

Default Value: 'Min of {1} is {0}'

sum

Specifies a pattern for the "sum" summary items when they are displayed in the parent column.

Type:

String

Default Value: 'Sum={0}'

sumOtherColumn

Specifies a pattern for the "sum" summary items displayed in a group row or in any other column rather than the parent one.

Type:

String

Default Value: 'Sum of {1} is {0}'