Syncfusion.Blazor.PivotTable
34.2.6
Prefix Reserved
dotnet add package Syncfusion.Blazor.PivotTable --version 34.2.6
NuGet\Install-Package Syncfusion.Blazor.PivotTable -Version 34.2.6
<PackageReference Include="Syncfusion.Blazor.PivotTable" Version="34.2.6" />
<PackageVersion Include="Syncfusion.Blazor.PivotTable" Version="34.2.6" />
<PackageReference Include="Syncfusion.Blazor.PivotTable" />
paket add Syncfusion.Blazor.PivotTable --version 34.2.6
#r "nuget: Syncfusion.Blazor.PivotTable, 34.2.6"
#:package Syncfusion.Blazor.PivotTable@34.2.6
#addin nuget:?package=Syncfusion.Blazor.PivotTable&version=34.2.6
#tool nuget:?package=Syncfusion.Blazor.PivotTable&version=34.2.6
Syncfusion® Blazor Pivot Table
Powerful data analysis and visualization component for Blazor applications. Organize, summarize, and analyze large datasets with interactive pivoting, drilling, filtering, sorting, and export capabilities.

Using this package with an AI coding agent:
Before generating Syncfusion code, ask your AI coding agent to run the Syncfusion setup using the following prompt:
Set up this project for Syncfusion before generating code. Fetch and follow the official instructions at https://ai.syncfusion.com/agent-setup/prompt.md, then report the detected platform, installed skill pack, MCP status, and any required licensing action.
The setup detects your project's platform and loads the appropriate Syncfusion skill pack. No Syncfusion account or MCP key is required to install or read Syncfusion agent skills.
Platform reference: https://ai.syncfusion.com/blazor/llms.txt
Key features
- Data Summarization: Organize and summarize business data in cross-table format
- Drill Down/Up: Interactive hierarchical navigation through data dimensions
- Filtering & Sorting: Excel-like filtering and sorting with multiple criteria
- Built-in Aggregations: Sum, average, count, min, max, and custom aggregations
- Calculated Fields: Create custom calculated fields based on existing data
- Excel & PDF Export: Export pivot tables to Excel and PDF formats
- Virtualization: Handle large datasets efficiently with row and column virtualization
- Field List: Interactive field list for dynamic dimension and measure configuration
- Editing: In-place editing with real-time data updates
System Requirements
- .NET 8.0 or later (Blazor Server, Blazor Web App, Blazor WebAssembly, Blazor Hybrid)
- See full requirements: System Requirements
Installation
Install the Pivot Table package and the themes package, which provides the stylesheets referenced below:
dotnet add package Syncfusion.Blazor.PivotTable
dotnet add package Syncfusion.Blazor.Themes
Add stylesheet and script references
- For Blazor Web App / Blazor Server App, add these to
Components/App.razororApp.razorfile. - For Blazor WebAssembly App, add these to
wwwroot/index.htmlfile.
<link href="_content/Syncfusion.Blazor.Themes/fluent2.css" rel="stylesheet" />
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
Quick start
- Register the Syncfusion® Blazor service in the
Program.csfile.
using Syncfusion.Blazor;
builder.Services.AddSyncfusionBlazor();
- Add Blazor Pivot Table component to your Razor page.
@using Syncfusion.Blazor.PivotView
<SfPivotView TValue="ProductSalesData">
<PivotViewDataSourceSettings DataSource="@Data">
<PivotViewColumns>
<PivotViewColumn Name="Year"></PivotViewColumn>
</PivotViewColumns>
<PivotViewRows>
<PivotViewRow Name="Country"></PivotViewRow>
</PivotViewRows>
<PivotViewValues>
<PivotViewValue Name="Sold" Type="SummaryTypes.Sum"></PivotViewValue>
</PivotViewValues>
</PivotViewDataSourceSettings>
</SfPivotView>
@code {
private List<ProductSalesData> Data { get; set; }
protected override void OnInitialized()
{
Data = new List<ProductSalesData>
{
new ProductSalesData { Country = "Canada", Year = "2024", Sold = 400 },
new ProductSalesData { Country = "France", Year = "2024", Sold = 375 },
new ProductSalesData { Country = "China", Year = "2024", Sold = 588 },
new ProductSalesData { Country = "Canada", Year = "2025", Sold = 461 },
new ProductSalesData { Country = "France", Year = "2025", Sold = 226 }
};
}
public class ProductSalesData
{
public string Country { get; set; }
public string Year { get; set; }
public double Sold { get; set; }
}
}
Documentation
- Getting Started with Blazor Web App
- Getting Started with WebAssembly
- API Reference
- Live Demos
- Feature Overview
Support
License
This is a commercial product and requires a paid license for possession or use. Review the Syncfusion® EULA.
About Syncfusion®
Syncfusion® provides 1600+ UI components and frameworks for web, mobile, and desktop development across multiple platforms:
Web: Blazor | ASP.NET Core | ASP.NET MVC | JavaScript | Angular | React | Vue
Desktop: WinForms | WPF | WinUI
Learn more at www.syncfusion.com.
sales@syncfusion.com | Toll Free: 1-888-9-DOTNET
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Syncfusion.Blazor.Buttons (>= 34.2.6)
- Syncfusion.Blazor.Calendars (>= 34.2.6)
- Syncfusion.Blazor.Charts (>= 34.2.6)
- Syncfusion.Blazor.Core (>= 34.2.6)
- Syncfusion.Blazor.Data (>= 34.2.6)
- Syncfusion.Blazor.DropDowns (>= 34.2.6)
- Syncfusion.Blazor.Grid (>= 34.2.6)
- Syncfusion.Blazor.Inputs (>= 34.2.6)
- Syncfusion.Blazor.Navigations (>= 34.2.6)
- Syncfusion.Blazor.Popups (>= 34.2.6)
- Syncfusion.Blazor.Spinner (>= 34.2.6)
- Syncfusion.Blazor.SplitButtons (>= 34.2.6)
- Syncfusion.ExcelExport.Net.Core (>= 34.2.6)
- Syncfusion.PdfExport.Net.Core (>= 34.2.6)
-
net8.0
- Syncfusion.Blazor.Buttons (>= 34.2.6)
- Syncfusion.Blazor.Calendars (>= 34.2.6)
- Syncfusion.Blazor.Charts (>= 34.2.6)
- Syncfusion.Blazor.Core (>= 34.2.6)
- Syncfusion.Blazor.Data (>= 34.2.6)
- Syncfusion.Blazor.DropDowns (>= 34.2.6)
- Syncfusion.Blazor.Grid (>= 34.2.6)
- Syncfusion.Blazor.Inputs (>= 34.2.6)
- Syncfusion.Blazor.Navigations (>= 34.2.6)
- Syncfusion.Blazor.Popups (>= 34.2.6)
- Syncfusion.Blazor.Spinner (>= 34.2.6)
- Syncfusion.Blazor.SplitButtons (>= 34.2.6)
- Syncfusion.ExcelExport.Net.Core (>= 34.2.6)
- Syncfusion.PdfExport.Net.Core (>= 34.2.6)
-
net9.0
- Syncfusion.Blazor.Buttons (>= 34.2.6)
- Syncfusion.Blazor.Calendars (>= 34.2.6)
- Syncfusion.Blazor.Charts (>= 34.2.6)
- Syncfusion.Blazor.Core (>= 34.2.6)
- Syncfusion.Blazor.Data (>= 34.2.6)
- Syncfusion.Blazor.DropDowns (>= 34.2.6)
- Syncfusion.Blazor.Grid (>= 34.2.6)
- Syncfusion.Blazor.Inputs (>= 34.2.6)
- Syncfusion.Blazor.Navigations (>= 34.2.6)
- Syncfusion.Blazor.Popups (>= 34.2.6)
- Syncfusion.Blazor.Spinner (>= 34.2.6)
- Syncfusion.Blazor.SplitButtons (>= 34.2.6)
- Syncfusion.ExcelExport.Net.Core (>= 34.2.6)
- Syncfusion.PdfExport.Net.Core (>= 34.2.6)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Syncfusion.Blazor.PivotTable:
| Package | Downloads |
|---|---|
|
Jakar.Extensions.Blazor.Syncfusion
Extensions to aid in development. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 34.2.6 | 231 | 8/31/2026 |
| 34.2.5 | 521 | 8/25/2026 |
| 34.2.4 | 646 | 8/17/2026 |
| 34.2.3 | 733 | 8/11/2026 |
| 34.2.2 | 433 | 8/5/2026 |
| 34.1.33 | 671 | 7/27/2026 |
| 34.1.32 | 705 | 7/21/2026 |
| 34.1.31 | 1,456 | 7/14/2026 |
| 34.1.30 | 598 | 7/9/2026 |
| 34.1.29 | 782 | 7/6/2026 |
| 33.2.15 | 1,294 | 6/23/2026 |
| 33.2.13 | 649 | 6/16/2026 |
| 33.2.12 | 883 | 6/9/2026 |
| 33.2.10 | 666 | 6/2/2026 |
| 33.2.8 | 967 | 5/26/2026 |
| 33.2.7 | 3,985 | 5/19/2026 |
| 33.2.6 | 816 | 5/12/2026 |
| 33.2.5 | 769 | 5/4/2026 |
| 33.2.4 | 1,131 | 4/27/2026 |
| 33.2.3 | 1,179 | 4/21/2026 |