値から作成するラジアルゲージ
ラジアルゲージチャートは、いくつかの値から作成できます。
ScottPlot.Plot myPlot = new();
double[] values = { 100, 80, 65, 45, 20 };
myPlot.Add.RadialGaugePlot(values);
myPlot.SavePng("demo.png", 400, 300);
このレシピは、ラジアルゲージカテゴリにある多くのレシピの1つです
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
ラジアルゲージチャートは、いくつかの値から作成できます。
ScottPlot.Plot myPlot = new();
double[] values = { 100, 80, 65, 45, 20 };
myPlot.Add.RadialGaugePlot(values);
myPlot.SavePng("demo.png", 400, 300);