ScottPlot.NET
GitHub Repo stars

Gauge Colors

Gauge colors can be customized by changing the default palette.

ScottPlot.Plot myPlot = new();

myPlot.Add.Palette = new ScottPlot.Palettes.Nord();
double[] values = { 100, 80, 65, 45, 20 };
myPlot.Add.RadialGaugePlot(values);

myPlot.SavePng("demo.png", 400, 300);
This recipe is one of many in the Radial gauge category