■ Line 클래스의 Function 속성을 사용해 High를 설정하는 방법을 보여준다.
▶ 예제 코드 (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 |
using Steema.TeeChart; using Steema.TeeChart.Functions; using Steema.TeeChart.Styles; TChart chart = new TChart(); chart.Aspect.View3D = false; chart.Axes.Left.MaximumOffset = 10; #region 라인 1 시리즈를 생성한다. Line line1 = new Line(); line1.FillSampleValues(10); chart.Series.Add(line1); #endregion #region 상위 함수를 생성한다. High high = new High(); #endregion #region 라인 2 시리즈를 생성한다. Line line2 = new Line(); line2.Function = high; line2.DataSource = line1; line2.Color = Color.Red; chart.Series.Add(line2); #endregion |