■ Axis 클래스의 TickLabelStyle 메소드를 사용해 틱 레이블 색상을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 |
using ScottPlot; Plot plot = new Plot(800, 600); plot.YAxis.TickLabelStyle(color : ColorTranslator.FromHtml("#00FF00")); |
■ Axis 클래스의 TickLabelStyle 메소드를 사용해 틱 레이블 색상을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 |
using ScottPlot; Plot plot = new Plot(800, 600); plot.YAxis.TickLabelStyle(color : ColorTranslator.FromHtml("#00FF00")); |