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 f90b47b commit f5065b6Copy full SHA for f5065b6
sample-applications/blazor-financial-dashboard/BlazorFinancialDashboard/Components/Pages/Analytics.razor
@@ -72,6 +72,7 @@
72
Navigable="true"
73
OnStateInit="@OnGridStateInit"
74
Pageable="true"
75
+ @bind-PageSize="@PageSize"
76
ShowColumnMenu="true"
77
Sortable="true">
78
<GridToolBar>
@@ -132,7 +133,7 @@
132
133
@code {
134
private TelerikChart? ChartRef { get; set; }
135
private List<Transaction> GridData { get; set; } = new();
-
136
+ private int PageSize { get; set; } = 10;
137
private List<PaymentMethod> PaymentMethods { get; set; } = new();
138
139
[CascadingParameter(Name = "IsLargeScreen")]
0 commit comments