■ ExpTrendFunction 클래스를 사용해 지수 추세를 그리는 방법을 보여준다.
▶ MainForm.cs
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
using System.Drawing; using System.Windows.Forms; using Steema.TeeChart.Functions; using Steema.TeeChart.Styles; using Steema.TeeChart.Tools; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 패스트 라인 1 시리즈 /// </summary> private FastLine fastLine1; /// <summary> /// 지수 트렌드 함수 /// </summary> private ExpTrendFunction expTrendFunction1; /// <summary> /// 패스트 라인 2 시리즈 /// </summary> private FastLine fastLine2; /// <summary> /// 트렌드 함수 /// </summary> private TrendFunction trendFunction; /// <summary> /// 패스트 라인 3 시리즈 /// </summary> private FastLine fastLine3; /// <summary> /// 그리드 밴드 /// </summary> private GridBand gridBand; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); #region 패스트 라인 1 시리즈를 생성한다. this.fastLine1 = new FastLine(); this.fastLine1.Title = "Source"; this.fastLine1.Color = Color.FromArgb(93, 165, 161); #endregion #region 지수 트렌드 함수를 생성한다. this.expTrendFunction1 = new ExpTrendFunction(); #endregion #region 패스트 라인 2 시리즈를 생성한다. this.fastLine2 = new FastLine(); this.fastLine2.Title = "Exp. Trend"; this.fastLine2.Color = Color.FromArgb(196, 83, 49); this.fastLine2.DataSource = this.fastLine1; this.fastLine2.Function = this.expTrendFunction1; #endregion #region 트랜드 함수를 생성한다. this.trendFunction = new TrendFunction(); #endregion #region 패스트 라인 3 시리즈를 생성한다. this.fastLine3 = new FastLine(); this.fastLine3.Title = "Trend"; this.fastLine3.Color = Color.FromArgb(231, 150, 9); this.fastLine3.ColorEach = false; this.fastLine3.DataSource = this.fastLine1; this.fastLine3.Function = this.trendFunction; #endregion #region 그리드 밴드를 생성한다. this.gridBand = new GridBand(); this.gridBand.Band1.Color = Color.FromArgb(127, 224, 224, 224); this.gridBand.Band2.Color = Color.FromArgb(127, 255, 255, 255); this.gridBand.Axis = this.tChart.Axes.Left; #endregion #region 티차트를 설정한다. this.tChart.Tools.Add(this.gridBand); this.tChart.Series.Add(this.fastLine1); this.tChart.Series.Add(this.fastLine2); this.tChart.Series.Add(this.fastLine3); #endregion this.fastLine1.FillSampleValues(100); } #endregion } } |