■ Line 클래스의 Function 속성을 사용해 Average를 설정하는 방법을 보여준다.
▶ 예제 코드 (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 |
using Steema.TeeChart; using Steema.TeeChart.Functions; using Steema.TeeChart.Styles; TChart chart = new TChart(); chart.Aspect.View3D = false; #region 막대 시리즈를 생성한다. Bar bar = new Bar(); bar.Add(3 ); bar.Add(8 ); bar.Add(6 ); bar.Add(2 ); bar.Add(9 ); bar.Add(12); chart.Series.Add(bar); #endregion #region 평균 함수를 생성한다. Average average = new Average(); #endregion #region 라인 시리즈를 생성한다. Line line = new Line(); line.Function = average; line.Function.Period = 2; line.DataSource = bar; line.CheckDataSource(); chart.Series.Add(line); #endregion |
※ Period 속성 값이 2인 경우 아래와 같이 평균 값이 계산됩니다.
3과 8의 평균 5.5
6과 2의 평균 4
9와 12의 평균 10.5