■ TChart 클래스에서 축 대수 레이블을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
using System; using System.Drawing; using Steema.TeeChart; using Steema.TeeChart.Styles; Random random = new Random(); TChart chart = new TChart(); Axis leftAxis = chart.Axes.Left; leftAxis.Logarithmic = true; leftAxis.LogarithmicBase = 10; leftAxis.Labels.ValueFormat = "#e+0"; Bar bar = new Bar(); for(int i = 0; i < 100; i++) { bar.Add(random.Next(100) * i); } chart.Series.Add(bar); |