ProEssentials.Chart.Net10.Arm64.Wpf
11.0.0.2
dotnet add package ProEssentials.Chart.Net10.Arm64.Wpf --version 11.0.0.2
NuGet\Install-Package ProEssentials.Chart.Net10.Arm64.Wpf -Version 11.0.0.2
<PackageReference Include="ProEssentials.Chart.Net10.Arm64.Wpf" Version="11.0.0.2" />
<PackageVersion Include="ProEssentials.Chart.Net10.Arm64.Wpf" Version="11.0.0.2" />
<PackageReference Include="ProEssentials.Chart.Net10.Arm64.Wpf" />
paket add ProEssentials.Chart.Net10.Arm64.Wpf --version 11.0.0.2
#r "nuget: ProEssentials.Chart.Net10.Arm64.Wpf, 11.0.0.2"
#:package ProEssentials.Chart.Net10.Arm64.Wpf@11.0.0.2
#addin nuget:?package=ProEssentials.Chart.Net10.Arm64.Wpf&version=11.0.0.2
#tool nuget:?package=ProEssentials.Chart.Net10.Arm64.Wpf&version=11.0.0.2
ProEssentials v11 -- The Fastest WPF Charting Library for .NET 10
GPU compute shader accelerated. 100 million data points. Zero memory copy. No subscription. No activation server.
ProEssentials is the world's fastest WPF charting library for scientific, engineering, financial, and industrial data visualization. Built on a native Win32 Direct3D engine coupled directly to the WPF render surface -- delivering the maximum possible real-time rendering performance. Five chart objects cover every scenario from simple bar charts to 3D surfaces with 4D color mapping, all from a single 5-8 MB deployment.
This is the ARM64 WPF .NET 10 package.
Choosing the Right WPF Package
| Package | Best For |
|---|---|
| ProEssentials.Chart.Net10.Wpf | .NET 10 AnyCPU WPF |
| ProEssentials.Chart.Net10.x64.Wpf | .NET 10 x64 WPF |
| ProEssentials.Chart.Net10.Arm64.Wpf ← this package | .NET 10 ARM64 WPF |
Search NuGet for "ProEssentials" to find the other framework, platform, and UI variants (WinForms, WPF, WinUI 3).
Quick Start -- WPF Chart on Screen in 60 Seconds
1. Install via NuGet Package Manager or CLI:
dotnet add package ProEssentials.Chart.Net10.Arm64.Wpf
2. Add the ProEssentials namespace and a PegoWpf control to your XAML window (the WPF control types carry a Wpf suffix):
<Window ... xmlns:pe="clr-namespace:Gigasoft.ProEssentials;assembly=Gigasoft.ProEssentialsWpf">
<Grid>
<pe:PegoWpf x:Name="pego1" />
</Grid>
</Window>
3. Handle the window Loaded event and paste this code:
using Gigasoft.ProEssentials.Enums;
// Minimal bar chart -- 2 series, 6 points
pego1.PeString.MainTitle = "ProEssentials WPF Quick Start";
pego1.PeData.Subsets = 2;
pego1.PeData.Points = 6;
pego1.PeData.Y[0, 0] = 10; pego1.PeData.Y[0, 1] = 30; pego1.PeData.Y[0, 2] = 20;
pego1.PeData.Y[0, 3] = 40; pego1.PeData.Y[0, 4] = 30; pego1.PeData.Y[0, 5] = 50;
pego1.PeData.Y[1, 0] = 15; pego1.PeData.Y[1, 1] = 63; pego1.PeData.Y[1, 2] = 74;
pego1.PeData.Y[1, 3] = 54; pego1.PeData.Y[1, 4] = 25; pego1.PeData.Y[1, 5] = 34;
pego1.PeString.SubsetLabels[0] = "Series A";
pego1.PeString.SubsetLabels[1] = "Series B";
pego1.PePlot.Method = GraphPlottingMethod.Bar;
pego1.PeConfigure.RenderEngine = RenderEngine.Direct2D;
pego1.PeFunction.ReinitializeResetImage();
pego1.Refresh();
4. Build and run. Right-click the chart to explore the full built-in interactive UI -- zoom, export, print, customize.
Why ProEssentials is the Fastest WPF Chart
ProEssentials v11 uses DirectX compute shaders for scene construction, with Direct3D coupled directly to the WPF render surface for maximum real-time throughput. The GPU activates only when data changes, keeping CPU and power usage minimal between updates.
- GPU compute shader render time: ~15ms -- 100 million completely new points every frame
- No resampling, no data reduction, no lossy downsampling -- your data hits the screen exactly as it exists in memory
- Zero-copy data binding -- the chart reads your
float[]array in place, no duplication:
pesgo1.PeData.X.UseDataAtLocation(myXData, pointCount);
pesgo1.PeData.Y.UseDataAtLocation(myYData, totalPoints);
Five Chart Objects, Every Chart Type
| Object | Purpose | Chart Types |
|---|---|---|
| Pego | Categorical X-axis | Bar, line, area, OHLC, ribbon, histogram, stacked, step |
| Pesgo | Continuous numeric X-axis | Scatter, line, spline, area, contour, real-time streaming |
| Pe3do | 3D Scientific | Surface, wireframe, scatter, bar, waterfall, 4D color mapping |
| Pepso | Polar / Smith | Polar line, polar scatter, Smith charts, radar/spider |
| Pepco | Pie Charts | Pie, multi-ring doughnut |
1,100+ properties. 1,260 methods. 167 enumerations.
Zero Licensing Friction
- Perpetual license -- pay once, use forever, no subscription
- No runtime key, no activation server -- works offline, air-gapped, xcopy deploy
- No account required -- evaluate immediately from this NuGet package
- Royalty-free deployment -- ship to unlimited end users
- Evaluation mode shows a watermark only -- your app runs fully functional
Free Unlimited Support -- From the Developers
Support is free, unlimited, and never expires. The engineers who designed the rendering engine answer directly -- no ticket cap, no tier system, no chatbot.
Email support@gigasoft.com -- just ask.
AI Code Assistant Included
ProEssentials includes pe_query.py -- a tool that gives AI assistants (Claude, ChatGPT, Copilot, Cursor) on-demand access to the complete API with ground-truth validation against the compiled DLL. Every property path is verified before the code reaches you.
Full Evaluation with 116 Example Projects
This package gets a first chart on screen immediately. For the complete experience -- 116 working example projects, local help documentation, and the AI code assistant:
Download Full Evaluation -- no account required
Links
ProEssentials v11 by Gigasoft, Inc. -- Charting since 1993. Copyright 2026 Gigasoft, Inc.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0-windows7.0 is compatible. |
-
net10.0-windows7.0
- No dependencies.
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 |
|---|---|---|
| 11.0.0.2 | 49 | 7/22/2026 |
What's New: https://gigasoft.com/proessentials11news
Walk-Through: https://gigasoft.com/net-chart
Documentation: https://gigasoft.com/netchart/controlcomponentslibrary.htm
Demo Download: https://gigasoft.com/best-net-chart-component-demo-download
AI Code Assistant: https://gigasoft.com/ai-code-assistant