■ VLine 클래스의 Min/Max 속성을 사용해 수직선 길이를 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
using System.Drawing; using ScottPlot; using ScottPlot.Plottable; Plot plot = new Plot(800, 600); VLine vLine = plot.AddVerticalLine(4, width : 2); vLine.Min = 1.5; vLine.Max = 2.5; vLine.Color = Color.Blue; |