Keyboard shortcuts

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

直線を使用したレーダー

放射状の目盛りは、円の代わりに直線を使用してレンダリングできます

Radar.cs
ScottPlot.Plot myPlot = new();

double[] values = { 78, 83, 100, 76, 43 };
var radar = myPlot.Add.Radar(values);
radar.PolarAxis.StraightLines = true;

myPlot.SavePng("demo.png", 400, 300);
このレシピは、レーダープロットカテゴリに含まれる多数のレシピのうちの1つです