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

インタラクティブなスパン

インタラクティブな垂直スパンと水平スパンにより、ユーザーはそれぞれ垂直軸と水平軸に沿った範囲を選択できます。

ScottPlot.Plot myPlot = new();

myPlot.Add.InteractiveVerticalSpan(3, 5);
myPlot.Add.InteractiveHorizontalSpan(3, 5);
myPlot.Axes.SetLimits(0, 10, 0, 10);

myPlot.SavePng("demo.png", 400, 300);
このレシピは、Interactiveカテゴリにある多数のレシピの1つです