AnyCPU build (x86 + x64) for WinForms projects. For 64-bit-only projects, ProEssentials.Chart.Net80.x64.Winforms is leaner and recommended. Targets .NET 8+ (Windows). ProEssentials v10 is a GPU compute-shader accelerated charting library. Plot 100 million data points with zero memory overhead using zero-copy data binding (UseDataAtLocation). No account required, no runtime license key, no activation server. CHART TYPES: Line, bar, area, scatter, spline, bubble, OHLC/candlestick, histogram, step, stacked, pie, doughnut, polar, Smith, radar, 3D surface, 3D wireframe, 3D scatter, 3D waterfall, contour, heatmap, 4D color mapping, and Delaunay triangulation. REAL-TIME PERFORMANCE: 100 million completely new data points rendered every 15ms (~66 fps) — data transferred to GPU via staging buffer, processed through a reduction shader and a render shader, and painted to screen. No resampling, no data reduction, no lossy downsampling. Run the GigaPrime2D example in our full evaluation to see it live. KEY ADVANTAGES: • GPU compute shaders with on-demand rendering (low power, high speed) • Zero-copy data binding — chart reads your float[] array in place, no duplication • 100M points at 15ms real-time update intervals — lossless, no resampling • 5–8 MB total deployment — one package, no external runtimes • Perpetual license — no subscription, no renewal, use forever • Free unlimited support directly from the developers who built the engine • AI code assistant (pe_query.py) validates every property against the compiled DLL • 1,100+ properties, 1,260 methods, 167 enums — complete charting control PLATFORMS: Also available for WPF, WinForms, C++ MFC, Delphi VCL, and ActiveX from the same native engine. Search NuGet for "ProEssentials" to find all packages. Continued use requires acceptance of PE10LICENSE.txt. Evaluation watermark removed with purchase. Free support: support@gigasoft.com
$ dotnet add package ProEssentials.Chart.Net80.WinformsProEssentials v9 Pro Winforms for .Net80 Framework (Window), by Gigasoft, Inc.
ProEssentials.Chart.Net80.WinForms.nupkg is for .Net80 and later. Search for our .Net.Winforms file for .Net Framework 4.8
Note it's best to use the Gigasoft (local) nugets that will be installed with the ProEssentialsv9 eval or if you purchase ProEssentials. The eval trial download is hassle free at https://www.gigasoft.com/net-chart-component-wpf-winforms-download The local nuget default install location is c:\ProEssentials9\Nuget If your system has the DotNet CLI available, our setup.exe will automatically set Gigasoft (Local) as a local Nuget source. Else if DotNet CLI is not available, we recommend installing the DotNet CLI and reinstall ProEssentials.
Note, after installing Nuget, perform a solution Build to see ProEssentials icons within the designer Toolbox.
Note, first time dragging a tool from toolbox may require Visual Studio be running with Admin privileges. This Nuget uses an embedded resourse that must unpack upon first use to support the designer. Subsequent uses will not require Admin.
Gigasoft's engineers will freely/no-hassle/quickly answer your questions and provide programming services as needed. Just ask.
The ProEssentials Nuget Charting component will provide an instant charting evaluation to your .Net Windows application.
ProEssentials is ideal for large mission critical data visualization projects with many variations of proprietary interactive charts.
Gigasoft's attention to rendering detail quickly creates a clean professional end-user experience hard to achieve this easy.
ProEssentials provides charts packed with data and annotations producing your proprietary visions mostly free of overlapping text and odd behaviors.
Using ProEssentials means spending less time creating that polished final solution (with reduced need for testing) that is guaranteed to impress.
What/Why ProEssentials? Watch a short video: https://www.youtube.com/watch?v=yhC0BwEm8M8
For a quick look, achieved with a few lines of code : https://gigasoft.com/wpf-chart-net-data-visualization
Documentation : https://gigasoft.com/netchart/controlcomponentslibrary.htm
This Nuget is fine for a first look, however, for a complete functional evaluation, including example projects, local help... Download the full eval : https://gigasoft.com/net-chart-component-wpf-winforms-download
The eval download is the best way to learn ...
Place a Pego control on your form. Default control name will be pego1.
Add a Form load event, Form1_Load. Tip, double click the forms top title/caption bar to quickly create a form load event.
Paste this code into your Load event handler.... Build, Run, Right-Click the chart to tinker with UI.
pego1.PeString.MainTitle = "Hello World"; pego1.PeString.SubTitle = "";
pego1.PeData.Subsets = 2; // Subsets = Rows // pego1.PeData.Points = 6; // Points = Columns // 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.PointLabels[0] = "Jan"; pego1.PeString.PointLabels[1] = "Feb"; pego1.PeString.PointLabels[2] = "Mar"; pego1.PeString.PointLabels[3] = "Apr"; pego1.PeString.PointLabels[4] = "May"; pego1.PeString.PointLabels[5] = "June";
pego1.PeString.SubsetLabels[0] = "For .Net Framework"; pego1.PeString.SubsetLabels[1] = "or MFC, ActiveX, VCL"; pego1.PeString.YAxisLabel = "Simple Quality Rendering";
pego1.PeColor.SubsetColors[0] = Color.FromArgb(60, 0, 180, 0); pego1.PeColor.SubsetColors[1] = Color.FromArgb(180, 0, 0, 130);
pego1.PeColor.BitmapGradientMode = false; pego1.PeColor.QuickStyle = Gigasoft.ProEssentials.Enums.QuickStyle.LightShadow; pego1.PeTable.Show = Gigasoft.ProEssentials.Enums.GraphPlusTable.Both; pego1.PeData.Precision = Gigasoft.ProEssentials.Enums.DataPrecision.NoDecimals; pego1.PeFont.Label.Bold = true; pego1.PePlot.Method = Gigasoft.ProEssentials.Enums.GraphPlottingMethod.Bar; pego1.PePlot.Option.GradientBars = 8; pego1.PePlot.Option.BarGlassEffect = true; pego1.PeLegend.Location = Gigasoft.ProEssentials.Enums.LegendLocation.Left; pego1.PePlot.DataShadows = Gigasoft.ProEssentials.Enums.DataShadows.ThreeDimensional; pego1.PeFont.FontSize = Gigasoft.ProEssentials.Enums.FontSize.Large; pego1.PePlot.SubsetLineTypes[0] = Gigasoft.ProEssentials.Enums.LineType.MediumSolid; pego1.PePlot.SubsetLineTypes[1] = Gigasoft.ProEssentials.Enums.LineType.MediumDash; pego1.PePlot.Option.MinimumPointSize = Gigasoft.ProEssentials.Enums.MinimumPointSize.MediumLarge;
// This enables data hot spots, But we need to define code in the HotSpot event // pego1.PeUserInterface.HotSpot.Data = true;
// These settings will be used for all charts // pego1.PeConfigure.RenderEngine = Gigasoft.ProEssentials.Enums.RenderEngine.Direct2D; pego1.PeConfigure.PrepareImages = true; pego1.PeConfigure.CacheBmp = true; pego1.PeConfigure.AntiAliasGraphics = true; pego1.PeConfigure.AntiAliasText = true;
// Call this at end of setting properties // pego1.PeFunction.ReinitializeResetImage();
pego1.Refresh(); // call standard .NET Refresh method to force paint