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

マーカーの凡例

ラベル付きのマーカーは凡例に表示されます。

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

var sin = myPlot.Add.Signal(Generate.Sin());
sin.LegendText = "正弦";

var cos = myPlot.Add.Signal(Generate.Cos());
cos.LegendText = "余弦";

var marker = myPlot.Add.Marker(25, .5);
marker.LegendText = "マーカー";
myPlot.ShowLegend();

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