Solar.ScottPlot 1.0.1

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

// Install Solar.ScottPlot as a Cake Tool
#tool nuget:?package=Solar.ScottPlot&version=1.0.1

ScottPlot is a free and open-source plotting library for .NET that makes it easy to interactively display large datasets.

alternate text is missing from this package README image

The ScottPlot Cookbook demonstrates how to create line plots, bar charts, pie graphs, scatter plots, and more with just a few lines of code.

Quickstart

double[] xs = new double[] {1, 2, 3, 4, 5};
double[] ys = new double[] {1, 4, 9, 16, 25};

var plt = new ScottPlot.Plot(400, 300);
plt.AddScatter(xs, ys);
plt.SaveFig("console.png");

alternate text is missing from this package README image

Windows Forms Quickstart

Drop a FormsPlot from the toolbox onto your form and add the following to your start-up sequence:

double[] xs = new double[] {1, 2, 3, 4, 5};
double[] ys = new double[] {1, 4, 9, 16, 25};
formsPlot1.Plot.AddScatter(xs, ys);

alternate text is missing from this package README image

More Quickstarts

Interactive Demo

The ScottPlot Demo allows you to run these examples interactively.

ScottPlot Cookbook

The ScottPlot Cookbook demonstrates how to create line plots, bar charts, pie graphs, scatter plots, and more with just a few lines of code.

alternate text is missing from this package README image

Supported Platforms

.NET Versions

  • .NET Standard 2.0
  • .NET Framework 4.6.2 and newer
  • .NET (Core) 6 and newer (compatibility notes)

Operating Systems

ScottPlot 4 is supported anywhere System.Drawing.Common is.

ScottPlot 5 (in development) uses SkiaSharp for improved cross-platform support for .NET 7 and later.

Interactive ScottPlot Controls

ScottPlot WinForms control: https://www.nuget.org/packages/ScottPlot.WinForms

ScottPlot WPF control: https://www.nuget.org/packages/ScottPlot.WPF

ScottPlot Avalonia control: https://www.nuget.org/packages/ScottPlot.Avalonia

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Solar.ScottPlot:

Package Downloads
Solar.ScottPlot.WPF

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 556 3/16/2023
1.0.0 150 3/16/2023