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.Series[0].FillColor = Colors.RebeccaPurple;

// データの上に軸をレンダリングする
radar.IsAxisAboveData = true;

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