NReco.PivotData 1.2.6

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package NReco.PivotData --version 1.2.6
NuGet\Install-Package NReco.PivotData -Version 1.2.6
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="NReco.PivotData" Version="1.2.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NReco.PivotData --version 1.2.6
#r "nuget: NReco.PivotData, 1.2.6"
#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.
// Install NReco.PivotData as a Cake Addin
#addin nuget:?package=NReco.PivotData&version=1.2.6

// Install NReco.PivotData as a Cake Tool
#tool nuget:?package=NReco.PivotData&version=1.2.6

PivotData: in-memory .NET OLAP cube (multidimensional array) for analytical queries and pivot tables calculation.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on NReco.PivotData:

Package Downloads
NReco.PivotData.Extensions The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

PivotData Toolkit components: render pivot tables to HTML, exports to JSON/CSV/Excel/PDF/DataTable, pivot table calculations (percentages, differences, running total, heatmap, top-N/pagination/groups expand-collapse), load data from SQL databases, infrastructure for interactive web-based reports builder. Note: without a valid license key, PivotData Toolkit components will work in TRIAL MODE (with some data limitations and trial notices). ASP.NET pivot table builder online demo: http://pivottable.nrecosite.com/ Examples download: https://www.nrecosite.com/pivot_data_library_net.aspx

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.4.2 21,268 2/2/2023
1.4.1 3,831 8/26/2022
1.4.0 2,085 7/13/2022
1.3.8 47,358 5/27/2020
1.3.7 255,070 7/18/2018
1.3.6 63,129 4/6/2018
1.3.5 2,431 2/26/2018
1.3.4 22,468 2/1/2017
1.3.3 31,373 10/18/2016
1.3.2 2,784 8/14/2016
1.3.1 2,659 7/5/2016
1.3.0 4,086 5/10/2016
1.2.6 3,079 2/4/2016
1.2.5 1,944 1/13/2016
1.2.4 1,922 12/11/2015
1.2.3 2,222 9/30/2015

v.1.2.6 Changes:
- introduced IPivotTable interface for alternative implementations/wrappers.
- added PivotTable.GetValue(ValueKey row, ValueKey col) method for key-based access to pivot table values; this signature can be used for getting sub-total values.
- added PivotTable.SortColumnKeysByRowKey and PivotTable.SortRowKeysByColumnKey methods for key-based sorting (useful for ordering by sub-total values).

v.1.2.5 Changes:
- Fixed PivotTable issue when the same dimension is used for both rows and columns (should be diagonal matrix result).
- New IAggregator.AsComposite() extension method avoids boilerplate code (cast to CompositeAggregator) for accessing PivotData or PivotTable with several measures.
- Added QueryCube example that illustrates how to use SliceQuery to filter/slice/dice, define derived (calculated) dimensions and measures.

v.1.2.4 Changes:
- added PivotTable.PreserveGroupOrder option: when enabled sort by value reorders rows/columns only inside groups.
- now PivotData works in lazy totals mode by default (this is backward-compatible change)
- added SortAsComparer for defining explicit order of pivot table rows or columns
- fixed NaturalSortKeyComparer for case when dimension has keys of different types: in this case it fallbacks to compare string equivalents of the keys
- added NaturalSortKeyComparer.ReverseInstance

v.1.2.3 Changes:
- moved SliceQuery from PivotData Toolkit to NReco.PivotData assembly. SliceQuery can be used for querying data cube in linq-style.
- PivotTable class: added PivotData property for accessing underlying data cube, added SortRowKeys/SortColumnKeys overloads for specifying measure index (for pivot tables with several measures)
- Overloaded ToString in IAggregatorFactory implementations (used for getting human-readable measure names)
- now NReco.PivotData.dll is a signed (strongly named) assembly