MeshWeaver.Charting.Pivot 2.0.3

dotnet add package MeshWeaver.Charting.Pivot --version 2.0.3
                    
NuGet\Install-Package MeshWeaver.Charting.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.Charting.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.Charting.Pivot" Version="2.0.3" />
                    
Directory.Packages.props
<PackageReference Include="MeshWeaver.Charting.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.Charting.Pivot --version 2.0.3
                    
#r "nuget: MeshWeaver.Charting.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.Charting.Pivot&version=2.0.3
                    
Install MeshWeaver.Charting.Pivot as a Cake Addin
#tool nuget:?package=MeshWeaver.Charting.Pivot&version=2.0.3
                    
Install MeshWeaver.Charting.Pivot as a Cake Tool

MeshWeaver.Charting.Pivot

Overview

MeshWeaver.Charting.Pivot bridges the gap between MeshWeaver.Pivot and MeshWeaver.Charting, providing specialized functionality for visualizing pivot data in charts. This library enables seamless transformation of pivot models into chart visualizations, supporting various chart types and aggregation views.

Features

  • Direct conversion of pivot models to chart models
  • Specialized chart builders for pivot data
  • Automatic axis and series generation from pivot structure
  • Support for all chart types (Bar, Line, Radar, Waterfall, etc.)
  • Aggregation visualization options
  • Row and column dimension mapping to chart elements
  • Extensive chart customization options

Usage

Basic Bar Chart

// Create a bar chart with rows by Name and columns by ValueIndex
var chart = workspace.Pivot(dataCube)
    .SliceColumnsBy(nameof(RecordWithValues.ValueIndex))
    .SliceRowsBy(nameof(Name))
    .ToBarChart()
    .WithTitle("Aggregated by Name");

Stacked Bar Chart with Custom Labels

// Create a stacked bar chart with multiple dimensions and custom label settings
var chart = workspace.Pivot(dataCube)
    .SliceColumnsBy(nameof(RecordWithValues.ValueIndex))
    .SliceRowsBy(nameof(Name), nameof(Country))
    .ToBarChart(chart => 
        chart.AsStackedWithScatterTotals()
            .WithOptions(m => m.WithLabelsFromLevels(0, 1))
    );

Line Chart with Smoothing

// Create a line chart with smoothed lines and custom options
var chart = workspace.Pivot(dataCube)
    .SliceRowsBy(nameof(Name), nameof(Country))
    .SliceColumnsBy(nameof(RecordWithValues.ValueIndex))
    .ToLineChart(chart =>
        chart.WithSmoothedLines("Paolo.Italy")
            .WithSmoothedLines(new Dictionary<string, double>() { { "Alessandro.Italy", 0.5 } })
            .WithRows("Alessandro.Italy", "Paolo.Italy")
            .WithOptions(model => model.WithLabels("8", "9", "10", "11", "12", "13", "14"))
    );

Radar Chart with Styling

// Create a radar chart with filled areas and custom styling
var chart = workspace.Pivot(dataCube)
    .SliceRowsBy(nameof(Name), nameof(Country))
    .SliceColumnsBy(nameof(RecordWithValues.ValueIndex))
    .ToRadarChart(chart =>
        chart.WithSmoothedLines(new Dictionary<string, double>() { { "Alessandro.Italy", 0.2 } })
            .WithFilledArea()
            .WithRows("Alessandro.Italy", "Paolo.Italy")
            .WithColorScheme(new string[] { "#1ECBE1", "#E1341E" })
            .WithTitle("Two lines radar plot", t => t.WithFontSize(15).AlignAtStart())
    );

Waterfall Chart with Custom Colors

// Create a waterfall chart with custom colors and styling
var chart = workspace.Pivot(dataCube)
    .SliceColumnsBy(nameof(Country), nameof(Name))
    .ToWaterfallChart(chart =>
        chart.WithStylingOptions(b =>
            b.WithIncrementColor("#08BFD1")
                .WithDecrementColor("#01AB6C")
                .WithTotalColor("#A7E1ED")
                .WithLabelsFontColor("white")
                .WithLabelsFontSize(14)
        )
        .WithTotals(col => col.IsTotalForSlice(nameof(Country)))
    );

Mixed Chart Types

// Create a mixed chart with both bars and lines
var chart = workspace.Pivot(dataCube)
    .SliceRowsBy(nameof(Name))
    .SliceColumnsBy(nameof(RecordWithValues.ValueIndex))
    .ToBarChart(chart => chart.WithRowsAsLine("Paolo"));

Chart Types and Mappings

Different pivot structures can be mapped to various chart types:

  • Bar Charts: Standard, Stacked, or Mixed with lines
  • Line Charts: Standard or Smoothed lines
  • Radar Charts: With or without filled areas
  • Waterfall Charts: With custom increment/decrement styling
  • Mixed Charts: Combining different visualization types

Key Concepts

  • Pivot to chart model conversion
  • Dimension slicing (rows and columns)
  • Chart type selection and customization
  • Series styling and color schemes
  • Advanced chart options (smoothing, stacking, etc.)

Integration with MeshWeaver

  • Seamless integration with MeshWeaver.Pivot models
  • Direct conversion to MeshWeaver.Charting models
  • Support for all MeshWeaver.Charting visualization types
  • Compatible with MeshWeaver.Blazor.ChartJs rendering

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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.3 463 10 days ago
2.0.2 437 10 days ago
2.0.1 89 13 days ago
2.0.0 124 15 days ago
2.0.0-preview3 79 a month ago
2.0.0-Preview2 78 2 months ago
2.0.0-preview1 75 3 months ago
1.0.1 111 6 months ago
1.0.0 98 6 months ago