ct_pc/packages/ScottPlot.WinForms.4.1.63
承诺 0d0e804288 init 2024-01-18 13:48:31 +08:00
..
lib init 2024-01-18 13:48:31 +08:00
.signature.p7s init 2024-01-18 13:48:31 +08:00
README.md init 2024-01-18 13:48:31 +08:00
ScottPlot.WinForms.4.1.63.nupkg init 2024-01-18 13:48:31 +08:00
icon.ico init 2024-01-18 13:48:31 +08:00
icon.png init 2024-01-18 13:48:31 +08:00

README.md

ScottPlot is a free and open-source plotting library for .NET that makes it easy to interactively display large datasets. This package provides a Windows Forms control for interactive manipulation of ScottPlot plots.

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);

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.