ProEssentials.Chart.Net.Winforms 9.8.0.46

dotnet add package ProEssentials.Chart.Net.Winforms --version 9.8.0.46
NuGet\Install-Package ProEssentials.Chart.Net.Winforms -Version 9.8.0.46
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="ProEssentials.Chart.Net.Winforms" Version="9.8.0.46" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ProEssentials.Chart.Net.Winforms --version 9.8.0.46
#r "nuget: ProEssentials.Chart.Net.Winforms, 9.8.0.46"
#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 ProEssentials.Chart.Net.Winforms as a Cake Addin
#addin nuget:?package=ProEssentials.Chart.Net.Winforms&version=9.8.0.46

// Install ProEssentials.Chart.Net.Winforms as a Cake Tool
#tool nuget:?package=ProEssentials.Chart.Net.Winforms&version=9.8.0.46

----------- READ ME ------------------------

ProEssentials v9 Pro Winforms for .Net Framework (Window), by Gigasoft, Inc.

ProEssentials.Chart.Net.WinForms.nupkg is for .Net Framework 4.8 and earlier. Also search for our .Net60.Winforms file

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, 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.

  1. Gigasoft's engineers will no-hassle/quickly answer your questions and provide programming services as needed. Just ask.

  2. Best to download our full eval from www.gigasoft.com.

  3. ProEssentials is ideal for large mission critical data visualization projects with many variations of proprietary interactive charts.

  4. Gigasoft's attention to rendering detail quickly creates a clean professional end-user experience.

  5. ProEssentials provides charts packed with data and annotations producing your proprietary visions mostly free of overlapping text and odd behaviors.

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 ...

  • examples 000, 100, 400 to know the basics
  • examples 007, 014, 105, 107, 125 to know how to interact with chart programmatically
  • examples 015, 005, 101, 026, 027, 028 to know about annotations
  • examples 012, 013 for multiple axes, and 103 and 104 to overlap multiple axes
  • example 005, and 132 to know how to create custom axes
  • the more you play with our demo projects, the faster you master ProEssentials.

Basic Walk-Through: Winforms C#

  1. Place a Pego control on your form. Default control name will be pego1.

  2. Add a Form load event, Form1_Load. Tip, double click the forms top title/caption bar to quickly create a form load event.

  3. 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

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  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.
  • .NETFramework 4.5

    • 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
9.8.0.46 109 3/17/2024
9.8.0.44 247 2/27/2024
9.8.0.36 1,130 4/24/2023
9.8.0.33 1,103 1/25/2023
9.8.0.28 1,230 9/13/2022
9.8.0.24 1,191 7/15/2022
9.8.0.20 1,230 4/26/2022
9.8.0.16 1,226 3/17/2022
9.8.0.12 1,115 12/23/2021
9.8.0.10 1,221 10/16/2021
9.8.0.8 1,038 6/30/2021
9.8.0.6 1,100 6/14/2021
9.8.0.4 1,175 5/21/2021