We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 666d33d commit 2218eefCopy full SHA for 2218eef
Radzen.Blazor/RadzenPivotDataGrid.razor.cs
@@ -735,8 +735,12 @@ public void AddPivotRow(RadzenPivotRow<TItem> row)
735
StateHasChanged();
736
}
737
738
-
739
- internal void AddPivotAggregate(RadzenPivotAggregate<TItem> aggregate)
+
+ /// <summary>
740
+ /// Adds a pivot aggregate to the pivot grid if it does not already exist.
741
+ /// </summary>
742
+ /// <param name="aggregate">The pivot aggregate to add.</param>
743
+ public void AddPivotAggregate(RadzenPivotAggregate<TItem> aggregate)
744
{
745
if (!allPivotAggregates.Contains(aggregate))
746
@@ -2214,4 +2218,4 @@ async Task UpdateFieldsFromSelected()
2214
2218
await Reload();
2215
2219
2216
2220
2217
-}
2221
+}
0 commit comments