ScottPlot 3.0.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package ScottPlot --version 3.0.8
                    
NuGet\Install-Package ScottPlot -Version 3.0.8
                    
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="ScottPlot" Version="3.0.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ScottPlot" Version="3.0.8" />
                    
Directory.Packages.props
<PackageReference Include="ScottPlot" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ScottPlot --version 3.0.8
                    
#r "nuget: ScottPlot, 3.0.8"
                    
#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.
#:package ScottPlot@3.0.8
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ScottPlot&version=3.0.8
                    
Install as a Cake Addin
#tool nuget:?package=ScottPlot&version=3.0.8
                    
Install as a Cake Tool

ScottPlot

ScottPlot is a free and open-source interactive graphing library for .NET written in C#. In a GUI environment ScottPlot makes it easy to display data interactively (left-click-drag pan, right-click-drag zoom), and in non-GUI environments ScottPlot can be used to create graphs and save them as images. ScottPlot was designed to be fast enough to interactively display large datasets with millions of points at high framerates. ScottPlot is easy to integrate into .NET projects because it is available on NuGet and has no dependencies outside the .NET framework libraries.

alternate text is missing from this package README image

Quickstart: Windows Forms

  1. Drag/Drop ScottPlotUC (from the toolbox) onto your form
  2. Add this code to your startup sequence:
double[] xs = new double[] {1, 2, 3, 4, 5};
double[] ys = new double[] {1, 4, 9, 16, 25};
scottPlotUC1.plt.PlotScatter(xs, ys);
scottPlotUC1.Render();

Quickstart: Console Application

double[] xs = new double[] { 1, 2, 3, 4, 5 };
double[] ys = new double[] { 1, 4, 9, 16, 25 };
var plt = new ScottPlot.Plot(600, 400);
plt.PlotScatter(xs, ys);
plt.SaveFig("demo.png");
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.

This package has no dependencies.

NuGet packages (53)

Showing the top 5 NuGet packages that depend on ScottPlot:

Package Downloads
ScottPlot.WPF

User controls for displaying interactive plots in WPF applications

ScottPlot.WinForms

User controls for displaying interactive plots in Windows Forms applications

ScottPlot.Avalonia

User controls for displaying interactive plots in Avalonia applications

ScottPlot.Eto

User controls for displaying interactive plots in Eto applications

Grebok.Extensions

Grebok Framework

GitHub repositories (25)

Showing the top 20 popular GitHub repositories that depend on ScottPlot:

Repository Stars
QuestPDF/QuestPDF
QuestPDF is a modern library for PDF document generation. Its fluent C# API lets you design complex layouts with clean, readable code. Create documents using a flexible, component-based approach.
dotnet/BenchmarkDotNet
Powerful .NET library for benchmarking
ScottPlot/ScottPlot
Interactive plotting library for .NET
ariacom/Seal-Report
Database Reporting Tool and Tasks (.Net)
chenxuuu/llcom
🛠功能强大的串口工具。支持Lua自动化处理、串口调试、WinUSB、串口曲线、TCP测试、MQTT测试、编码转换、乱码恢复等功能
polterguy/magic
Fully Autonomous AI-based Software Development Assistant
swharden/Csharp-Data-Visualization
Resources for visualizing data using C# and the .NET platform
VedAstro/VedAstro
A non-profit, open source project to make Vedic Astrology easily available to all.
toniebox-reverse-engineering/teddy
With this tool you can dump existing files for the famous audio box or create custom ones.
OndrejNepozitek/Edgar-DotNet
Configurable procedural layout generator
rstropek/Samples
ShootMe/FallGuysStats
Fall Guys Stats Tracker
IntptrMax/YoloSharp
Train Yolo with C#
project-sbc/Handheld-Control-Panel
RomanZhu/FixedPoint-Sharp
Fixed point math with 48.16 precision (based on lib by https://github.com/fholm)
HerrRiebmann/KDS2Bluetooth
Kawasaki Diagnostic Service Reader via Bluetooth
RiddleTime/Race-Element
Solutions for Driving and Flight Simulators
admin-shell-io/aasx-package-explorer
C# based viewer / editor for the Asset Administration Shell
NeilMacMullen/kusto-loco
C# KQL query engine with flexible I/O layers and visualization
waacton/Unicolour
🌈 Colour / Color conversion, interpolation, and comparison for .NET
Version Downloads Last Updated
5.1.59 12,873 6/22/2026
5.1.58 220,339 3/29/2026
5.1.57 489,734 10/11/2025
5.0.56 165,779 8/23/2025
5.0.55 540,636 3/22/2025
5.0.54 240,419 1/26/2025
5.0.53 27,339 1/13/2025
5.0.52 12,392 1/9/2025
5.0.51 4,295 1/8/2025
5.0.50 7,060 1/7/2025
5.0.49 4,476 1/6/2025
5.0.48 3,990 1/6/2025
5.0.47 123,227 11/24/2024
5.0.46 35,451 11/17/2024
5.0.45 15,348 11/13/2024
5.0.44 9,210 11/9/2024
5.0.43 42,284 11/3/2024
5.0.42 16,619 10/30/2024
5.0.41 6,529 10/28/2024
3.0.8 1,719 8/4/2019
Loading failed