MeshWeaver.Pivot 2.0.3

dotnet add package MeshWeaver.Pivot --version 2.0.3
                    
NuGet\Install-Package MeshWeaver.Pivot -Version 2.0.3
                    
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="MeshWeaver.Pivot" Version="2.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MeshWeaver.Pivot" Version="2.0.3" />
                    
Directory.Packages.props
<PackageReference Include="MeshWeaver.Pivot" />
                    
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 MeshWeaver.Pivot --version 2.0.3
                    
#r "nuget: MeshWeaver.Pivot, 2.0.3"
                    
#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.
#addin nuget:?package=MeshWeaver.Pivot&version=2.0.3
                    
Install MeshWeaver.Pivot as a Cake Addin
#tool nuget:?package=MeshWeaver.Pivot&version=2.0.3
                    
Install MeshWeaver.Pivot as a Cake Tool

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

See Also

Refer to the main MeshWeaver documentation for more information about the overall project.

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

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