ct_pc/packages/ScottPlot.WinForms.4.1.63/README.md

931 B

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.