■ TChart 클래스에서 멀티 라인 축의 레이블을 표시하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
using System; using System.Drawing; using Steema.TeeChart; using Steema.TeeChart.Styles; TChart chart = new TChart(); chart.Axes.Bottom.Labels.MultiLine = true; chart.Axes.Bottom.Labels.DateTimeFormat = "MM'/'dd hh:mm"; Bar bar = new Bar(); bar.Add(DateTime.Parse("2003/02/28"), 100, Color.Red); bar.Add(DateTime.Parse("2003/03/01"), 200, Color.Red); bar.Add(DateTime.Parse("2003/03/02"), 150, Color.Red); bar.XValues.DateTime = true; chart.Series.Add(bar); |