MeshWeaver.Pivot
2.0.3
dotnet add package MeshWeaver.Pivot --version 2.0.3
NuGet\Install-Package MeshWeaver.Pivot -Version 2.0.3
<PackageReference Include="MeshWeaver.Pivot" Version="2.0.3" />
<PackageVersion Include="MeshWeaver.Pivot" Version="2.0.3" />
<PackageReference Include="MeshWeaver.Pivot" />
paket add MeshWeaver.Pivot --version 2.0.3
#r "nuget: MeshWeaver.Pivot, 2.0.3"
#addin nuget:?package=MeshWeaver.Pivot&version=2.0.3
#tool nuget:?package=MeshWeaver.Pivot&version=2.0.3
MeshWeaver.Pivot
Overview
MeshWeaver.Pivot provides powerful data pivoting capabilities that serve as the foundation for creating pivot grids and pivot charts in the MeshWeaver ecosystem. This library defines the core pivot models, builders, and aggregation functions that allow for flexible analysis and visualization of multidimensional data.
Features
- Flexible
PivotBuilder
for creating pivot tables with rows, columns, and aggregations DataCubePivotBuilder
for working with data cube sources- Support for various aggregation operations (sum, count, average, etc.)
- Multi-dimensional data slicing and grouping
- Extensible pivot model architecture
- Factory methods for easy pivot creation
Usage
Basic Pivot Example
// Create a simple pivot with rows, columns and aggregation using PivotFactory
var pivotModel = workspace.Pivot(salesData)
.GroupByRows(x => x.Region) // Group rows by Region
.GroupByColumns(x => x.Product) // Group columns by Product
.Aggregate(x => x.Amount) // Aggregate by Amount
.Build();
// Convert to a MeshWeaver GridControl for display
var gridControl = new GridControl(pivotModel);
Count Aggregation Example
// Create a pivot that counts occurrences
var pivotModel = workspace.Pivot(salesData)
.GroupByRows(x => x.Region)
.GroupByColumns(x => x.Product)
.Count() // Count records in each group
.Build();
Multiple Dimensions Example
// Group by multiple dimensions
var pivotModel = workspace.Pivot(salesData)
.GroupByRows(x => x.Region)
.ThenBy(x => x.Quarter) // Additional row grouping
.GroupByColumns(x => x.Product)
.ThenBy(x => x.Category) // Additional column grouping
.Aggregate(x => x.Amount)
.Build();
Working with DataCubes
// Create a pivot from data cubes
var pivotModel = workspace.ForDataCubes(dataCubes)
.GroupByRows(x => x.Region)
.GroupByColumns(x => x.Product)
.Aggregate(x => x.Amount)
.Build();
Working with a Single DataCube
// Create a pivot from a single data cube
var pivotModel = workspace.Pivot(salesCube)
.GroupByRows(x => x.Region)
.GroupByColumns(x => x.Product)
.Aggregate(x => x.Amount)
.Build();
Average Aggregation with DataCubes
// Calculate averages in pivot
var pivotModel = workspace.ForDataCubes(dataCubes)
.GroupByRows(x => x.Region)
.GroupByColumns(x => x.Product)
.Average(x => x.Amount) // Calculate average amount
.Build();
Visualization Options
The pivot models created with MeshWeaver.Pivot can be visualized in various ways:
As Grid
// Create a grid from pivot model
var pivotGrid = new GridControl(pivotModel);
As Chart
// Create a chart from pivot model
var chartModel = ChartModel
.Bar()
.WithPivotData(pivotModel);
var pivotChart = new ChartControl(chartModel);
Key Concepts
- Pivot builders and fluent API
- PivotFactory extension methods on IWorkspace
- Dimension grouping (rows and columns)
- Aggregation functions (sum, count, average)
- Data representation models
- Hierarchical data structures
Integration with MeshWeaver
- Provides data models for MeshWeaver.GridModel grids
- Provides data for MeshWeaver.Charting visualizations
- Works seamlessly with MeshWeaver.Data and data cube components
Related Projects
- MeshWeaver.GridModel - For displaying pivot data in grids
- MeshWeaver.Charting - For visualizing pivot data in charts
- MeshWeaver.Blazor.AgGrid - Blazor implementation of pivot grids
- MeshWeaver.Blazor.ChartJs - Blazor implementation of pivot charts
See Also
Refer to the main MeshWeaver documentation for more information about the overall project.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net9.0
- AspectCore.Extensions.Reflection (>= 2.4.0)
- MeshWeaver.Hierarchies (>= 2.0.3)
- MeshWeaver.Utils (>= 2.0.3)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on MeshWeaver.Pivot:
Package | Downloads |
---|---|
MeshWeaver.Reporting
Package Description |
|
MeshWeaver.Charting.Pivot
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.3 | 475 | 3/24/2025 |
2.0.2 | 452 | 3/24/2025 |
2.0.1 | 99 | 3/21/2025 |
2.0.0 | 135 | 3/20/2025 |
2.0.0-preview3 | 92 | 2/28/2025 |
2.0.0-Preview2 | 100 | 2/10/2025 |
2.0.0-preview1 | 90 | 1/6/2025 |
1.0.1 | 117 | 10/8/2024 |
1.0.0 | 113 | 10/8/2024 |