■ Bar 클래스를 사용해 월별 제품별 생산량 막대 차트를 생성하는 방법을 보여준다.
▶ 예제 코드 (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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
using Steema.TeeChart; using Steema.TeeChart.Styles; TChart chart = new TChart(); chart.Header.Text = "Production results"; Controls.Add(chart); #region 막대1 시리즈를 생성한다. Bar bar1 = new Bar(); bar1.Title = "Jan"; bar1.Add(300, "Product10"); bar1.Add(175, "Product12"); bar1.Add(461, "Product14"); chart.Series.Add(bar1); #endregion #region 막대2 시리즈를 생성한다. Bar bar2 = new Bar(); bar2.Title = "Feb"; bar2.Add(325, "Product10"); bar2.Add(223, "Product12"); bar2.Add(470, "Product14"); chart.Series.Add(bar2); #endregion #region 막대3 시리즈를 생성한다. Bar bar3 = new Bar(); bar3.Title = "Mar"; bar3.Add(287, "Product10"); bar3.Add(241, "Product12"); bar3.Add(455, "Product14"); chart.Series.Add(bar3); #endregion #region TChart에 있는 모든 시리즈의 마크를 숨긴다. foreach(Series series in chart.Series) { series.Marks.Visible = false; } #endregion |