■ Points 클래스의 XValues/YValues/FirstVisibleIndex/LastVisibleIndex 속성을 사용해 현재 페이지의 최소/최대값을 찾는 방법을 보여준다.
▶ 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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
using System; using System.Drawing; using System.Windows.Forms; using Steema.TeeChart.Drawing; using Steema.TeeChart.Styles; using Steema.TeeChart.Tools; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 페이지 번호 /// </summary> private PageNumber pageNumber; /// <summary> /// 포인트 시리즈 /// </summary> private Points points; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); Text = "Points 클래스 : XValues/YValues/FirstVisibleIndex/LastVisibleIndex 속성을 사용해 현재 페이지의 최소/최대값 찾기"; this.adjustVerticalAxisCheckBox.Checked = true; this.tChart.Panel.Pen = new ChartPen(Color.Black); this.tChart.Page.MaxPointsPerPage = 25; this.pageNumber = new PageNumber(this.tChart.Chart); this.points = new Points(this.tChart.Chart); this.points.FillSampleValues(100); this.adjustVerticalAxisCheckBox.CheckedChanged += adjustVerticalAxisCheckBox_CheckedChanged; this.previousButton.Click += previousButton_Click; this.nextButton.Click += nextButton_Click; AdjustAxisScale(this.points, 0, 24, true); } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 수직 축 조정 체크 박스 체크 변경시 처리하기 - adjustVerticalAxisCheckBox_CheckedChanged(sender, e) /// <summary> /// 수직 축 조정 체크 박스 체크 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void adjustVerticalAxisCheckBox_CheckedChanged(object sender, EventArgs e) { if(this.adjustVerticalAxisCheckBox.Checked) { AdjustAxisScale(this.points, this.points.FirstVisibleIndex, this.points.LastVisibleIndex, true); } else { this.points.GetVertAxis.Automatic = true; } this.points.Repaint(); } #endregion #region 이전 버튼 클릭시 처리하기 - previousButton_Click(sender, e) /// <summary> /// 이전 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void previousButton_Click(object sender, EventArgs e) { this.tChart.Page.Previous(); if(this.adjustVerticalAxisCheckBox.Checked) { AdjustAxisScale(this.points, this.points.FirstVisibleIndex, this.points.LastVisibleIndex, true); } else { this.points.GetVertAxis.Automatic = true; } } #endregion #region 다음 버튼 클릭시 처리하기 - nextButton_Click(sender, e) /// <summary> /// 다음 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void nextButton_Click(object sender, EventArgs e) { this.tChart.Page.Next(); if(this.adjustVerticalAxisCheckBox.Checked) { AdjustAxisScale(this.points, this.points.FirstVisibleIndex, this.points.LastVisibleIndex, true); } else { this.points.GetVertAxis.Automatic = true; } } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region 최소/최대값 찾기 - FindMinimumMaximum(valueList, firstIndex, lastIndex, minimum, maximum) /// <summary> /// 최소/최대값 찾기 /// </summary> /// <param name="valueList">값 리스트</param> /// <param name="firstIndex">첫번째 인덱스</param> /// <param name="lastIndex">마지막 인덱스</param> /// <param name="minimum">최소값</param> /// <param name="maximum">최대값</param> private void FindMinimumMaximum(ValueList valueList, int firstIndex, int lastIndex, out double minimum, out double maximum) { minimum = valueList[firstIndex]; maximum = valueList[lastIndex ]; for(int i = firstIndex; i <= lastIndex; i++) { if(valueList.Value[i] < minimum) { minimum = valueList[i]; } else if(valueList.Value[i] > maximum) { maximum = valueList[i]; } } } #endregion #region 축 스케일 조정하기 - AdjustAxisScale(points, firstIndex, lastIndex, vertical) /// <summary> /// 축 스케일 조정하기 /// </summary> /// <param name="points">포인트 시리즈</param> /// <param name="firstIndex">첫번째 인덱스</param> /// <param name="lastIndex">마지막 인덱스</param> /// <param name="vertical">수직 여부</param> private void AdjustAxisScale(Points points, int firstIndex, int lastIndex, bool vertical) { double minimum; double maximum; if(vertical) { FindMinimumMaximum(points.YValues, firstIndex, lastIndex, out minimum, out maximum); points.GetVertAxis.Automatic = false; points.GetVertAxis.SetMinMax(minimum, maximum); } else { FindMinimumMaximum(points.XValues, firstIndex, lastIndex, out minimum, out maximum); points.GetHorizAxis.Automatic = false; points.GetHorizAxis.SetMinMax(minimum, maximum); } } #endregion } } |