Syncfusion.Blazor.PivotTable 34.2.9

Prefix Reserved
dotnet add package Syncfusion.Blazor.PivotTable --version 34.2.9
                    
NuGet\Install-Package Syncfusion.Blazor.PivotTable -Version 34.2.9
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Syncfusion.Blazor.PivotTable" Version="34.2.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.Blazor.PivotTable" Version="34.2.9" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.Blazor.PivotTable" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Syncfusion.Blazor.PivotTable --version 34.2.9
                    
#r "nuget: Syncfusion.Blazor.PivotTable, 34.2.9"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Syncfusion.Blazor.PivotTable@34.2.9
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Syncfusion.Blazor.PivotTable&version=34.2.9
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.Blazor.PivotTable&version=34.2.9
                    
Install as a Cake Tool

Syncfusion Blazor Pivot Table

This package contains the Blazor Pivot Table component for Blazor applications. The Blazor Pivot Table is a powerful data analysis and visualization component used to organize, summarize, and analyze large datasets with interactive pivoting, drilling, filtering, sorting, and export capabilities. Its rich feature set includes data summarization, drill down/up, filtering, sorting, built-in aggregations, calculated fields, Excel and PDF export, virtualization, a field list, and editing.

Blazor Pivot Table

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, 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.razor or App.razor file.
  • For Blazor WebAssembly App, add these to wwwroot/index.html file.
<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

  1. Register the Syncfusion Blazor service in the Program.cs file.
using Syncfusion.Blazor;

builder.Services.AddSyncfusionBlazor();
  1. 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

Support and Feedback

Explore other popular Syncfusion Blazor components curated from UI components, standalone SDKs, and document solution suites.

UI components Standalone UI SDK's Document Processing
Blazor Charts<br/> Blazor File Manager<br/> Blazor DataGrid<br/> Blazor Gantt Chart<br/> Blazor Diagram<br/> Blazor Scheduler<br/> Blazor RichTextEditor Blazor DOCX Editor<br/> Blazor PDF Viewer<br/> Blazor Spreadsheet Editor

License

This is a commercial product and requires a paid license for possession or use. Syncfusion licensed software, including this component, is subject to the terms and conditions of the Syncfusion EULA. You can purchase a license here or start a free 30-day trial here.

About Syncfusion

Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion has more than 29,000 customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1800+ components and frameworks for web, mobile, and desktop development across multiple platforms:

Web: Blazor | ASP.NET Core | ASP.NET MVC | JavaScript | Angular | React | Vue

Mobile: Flutter | MAUI | UWP

Desktop: WinForms | WPF | WinUI

Learn more at www.syncfusion.com.

sales@syncfusion.com | www.syncfusion.com | Toll Free: 1-888-9-DOTNET

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.9 251 9/21/2026
34.2.8 620 9/14/2026
34.2.7 449 9/8/2026
34.2.6 681 8/31/2026
34.2.5 819 8/25/2026
34.2.4 965 8/17/2026
34.2.3 817 8/11/2026
34.2.2 630 8/5/2026
34.1.33 729 7/27/2026
34.1.32 815 7/21/2026
34.1.31 1,602 7/14/2026
34.1.30 641 7/9/2026
34.1.29 935 7/6/2026
33.2.15 1,430 6/23/2026
33.2.13 663 6/16/2026
33.2.12 890 6/9/2026
33.2.10 688 6/2/2026
33.2.8 1,017 5/26/2026
33.2.7 6,493 5/19/2026
33.2.6 823 5/12/2026
Loading failed