Skip to content

Commit b5c2fcb

Browse files
docs(pivotgrid): add title parameter (#1541)
1 parent 55d035d commit b5c2fcb

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

components/pivotgrid/overview.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,15 @@ The PivotGrid is an integrated product that includes several Razor components:
6666
<TelerikPivotGrid Data="@PivotData"
6767
DataProviderType="@PivotGridDataProviderType.Local">
6868
<PivotGridColumns>
69-
<PivotGridColumn Name="@nameof(PivotModel.City)" />
69+
<PivotGridColumn Name="@nameof(PivotModel.City)" Title="City" />
7070
</PivotGridColumns>
7171
<PivotGridRows>
72-
<PivotGridRow Name="@nameof(PivotModel.Category)" />
72+
<PivotGridRow Name="@nameof(PivotModel.Category)" Title="Category" />
7373
<PivotGridRow Name="@nameof(PivotModel.Product)" />
7474
</PivotGridRows>
7575
<PivotGridMeasures>
7676
<PivotGridMeasure Name="@nameof(PivotModel.ContractValue)"
77+
Title="Contract Value"
7778
Aggregate="@PivotGridAggregateType.Sum" />
7879
</PivotGridMeasures>
7980
</TelerikPivotGrid>
@@ -170,8 +171,9 @@ The following table lists parameters of the `PivotGridRow`, `PivotGridColumn` an
170171
| --- | --- | --- |
171172
| `Aggregate` | `PivotGridAggregateType` enum <br /> (`Sum`) | The nature of the calculated aggregate values. Applies to `PivotGridMeasure` only. |
172173
| `Format` | `string` | The [display format](https://learn.microsoft.com/en-us/dotnet/standard/base-types/standard-numeric-format-strings) of the calculated aggregate values, for example `"{0:C2}"`. Applies to `PivotGridMeasure` only. |
173-
| `HeaderClass` | `string` | Adds a custom CSS class to the row/column/measure header. Use it to apply custom styles or [override the default PivotGrid styles]({%slug themes-override%}). |
174+
| `HeaderClass` | `string` | Adds a custom CSS class to the respective row header, column header or measure. Use it to apply custom styles or [override the default PivotGrid styles]({%slug themes-override%}). |
174175
| `Name` | `string` | The field name of the respective row, column or measure. |
176+
| `Title` | `string` | The label to be displayed in the Configurator for the respective row, column or measure. |
175177

176178

177179
### Configurator Parameters

0 commit comments

Comments
 (0)