■ Plot 클래스의 AddPoint 메소드를 사용해 포인트를 추가하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 |
using ScottPlot; Plot plot = new Plot(800, 600); MarkerPlot point = plot.AddPoint(1, 1, size : 10, shape : MarkerShape.openCircle); |
■ Plot 클래스의 AddPoint 메소드를 사용해 포인트를 추가하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 |
using ScottPlot; Plot plot = new Plot(800, 600); MarkerPlot point = plot.AddPoint(1, 1, size : 10, shape : MarkerShape.openCircle); |