User controls for displaying interactive plots in Windows Forms applications
$ dotnet add package ScottPlot.WinFormsScottPlot 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.
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);
formsPlot1.Refresh();

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