■ Bar 클래스에서 바 위치/크기를 설정하는 방법을 보여준다.
▶ CustomBar.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 |
using System.Drawing; using Steema.TeeChart; using Steema.TeeChart.Styles; namespace TestProject { /// <summary> /// 커스텀 바 /// </summary> public class CustomBar : Bar { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 크기 값 리스트 /// </summary> private ValueList sizeValueList; /// <summary> /// 크기 /// </summary> private int size; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 크기 값 리스트 - SizeValues /// <summary> /// 크기 값 리스트 /// </summary> public ValueList SizeValues { get { return this.sizeValueList; } set { SetValueList(this.sizeValueList, value); } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Consturctor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - CustomBar() /// <summary> /// 생성자 /// </summary> public CustomBar() : this(null) { } #endregion #region 생성자 - CustomBar(chart) /// <summary> /// 생성자 /// </summary> /// <param name="chart">차트</param> public CustomBar(Chart chart) : base(chart) { this.sizeValueList = new ValueList(this, "xSize"); } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 값 그리기 - DrawValue(valueIndex) /// <summary> /// 값 그리기 /// </summary> /// <param name="valueIndex">값 인덱스</param> public override void DrawValue(int valueIndex) { if(valueIndex == firstVisible) { this.size = IBarSize; } InternalCalcBarSize(valueIndex); base.DrawValue(valueIndex); } #endregion ////////////////////////////////////////////////////////////////////////////////////////// Protected #region 클릭시 처리하기 (내부용) - InternalClicked(valueIndex, point) /// <summary> /// 클릭시 처리하기 (내부용) /// </summary> /// <param name="valueIndex">값 인덱스</param> /// <param name="point">포인트</param> /// <returns>처리 결과</returns> protected override bool InternalClicked(int valueIndex, Point point) { InternalCalcBarSize(valueIndex); return base.InternalClicked(valueIndex, point); } #endregion ////////////////////////////////////////////////////////////////////////////////////////// Private #region 바 크기 계산하기 (내부용) - InternalCalcBarSize(valueIndex) /// <summary> /// 바 크기 계산하기 (내부용) /// </summary> /// <param name="valueIndex">값 인덱스</param> private void InternalCalcBarSize(int valueIndex) { if(this.sizeValueList[valueIndex] == 0) { IBarSize = this.size; } else { IBarSize = GetHorizAxis.CalcSizeValue(this.sizeValueList[valueIndex]); } } #endregion } } |
▶ 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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
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 CustomBar customBar; /// <summary> /// 주석 /// </summary> private Annotation annotation; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); Text = "Bar 클래스 : 바 위치/크기 설정하기"; this.tChart.Panel.Pen = new ChartPen(Color.Black); #region 커스텀 바를 설정한다. this.customBar = new CustomBar(); this.customBar.FillSampleValues(6); this.customBar.SizeValues[0] = 0.4; this.customBar.SizeValues[2] = 0.1; this.customBar.SizeValues[4] = 1.1; this.customBar.XValues[3] = 2.8; this.customBar.Colors[1] = Color.Blue; this.customBar.Colors[4] = Color.Yellow; this.customBar.Marks.Visible = false; this.customBar.Cursor = Cursors.Hand; this.tChart.Series.Add(this.customBar); #endregion #region 주석을 추가한다. this.annotation = new Annotation(); this.annotation.Shape.CustomPosition = true; this.tChart.Tools.Add(this.annotation); #endregion #region 바 숫자 UP/DOWN을 설정한다. this.barNumericUpDown.Minimum = 0; this.barNumericUpDown.Maximum = this.customBar.Count - 1; this.barNumericUpDown.Value = 0; #endregion #region 위치 트랙바를 설정한다. this.positionTrackBar.Maximum = this.customBar.Count * 100; this.positionTrackBar.TickFrequency = this.positionTrackBar.Maximum / 10; this.positionTrackBar.Minimum = -this.positionTrackBar.Maximum; #endregion #region 크기 트랙바를 설정한다. this.sizeTrackBar.Minimum = 0; this.sizeTrackBar.Maximum = 300; this.sizeTrackBar.Value = 100; this.sizeTrackBar.TickFrequency = 20; #endregion #region 이벤트를 설정한다. Load += Form_Load; this.barNumericUpDown.ValueChanged += barNumericUpDown_ValueChanged; this.positionTrackBar.ValueChanged += positionTrackBar_Scroll; this.sizeTrackBar.ValueChanged += sizeTrackBar_Scroll; this.tChart.ClickSeries += tChart_ClickSeries; #endregion } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 폼 로드시 처리하기 - Form_Load(sender, e) /// <summary> /// 폼 로드시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void Form_Load(object sender, EventArgs e) { barNumericUpDown_ValueChanged(null, null); } #endregion #region 바 숫자 UP/DOWN 값 변경시 처리하기 - barNumericUpDown_ValueChanged(sender, e) /// <summary> /// 바 숫자 UP/DOWN 값 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void barNumericUpDown_ValueChanged(object sender, EventArgs e) { int index = Convert.ToInt32(this.barNumericUpDown.Value); this.positionTrackBar.Value = Convert.ToInt32(this.customBar.XValues [index] * 100); this.sizeTrackBar.Value = Convert.ToInt32(this.customBar.SizeValues[index] * 100); RefreshAnnotation(); } #endregion #region 위치 트랙바 스크롤시 처리하기 - positionTrackBar_Scroll(sender, e) /// <summary> /// 위치 트랙바 스크롤시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void positionTrackBar_Scroll(object sender, EventArgs e) { int index = Convert.ToInt32(this.barNumericUpDown.Value); this.customBar.XValues[index] = this.positionTrackBar.Value / 100.0; this.customBar.Repaint(); this.positionValueLabel.Text = this.customBar.XValues[index].ToString(); RefreshAnnotation(); } #endregion #region 크기 트랙바 스크롤시 처리하기 - sizeTrackBar_Scroll(sender, e) /// <summary> /// 크기 트랙바 스크롤시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void sizeTrackBar_Scroll(object sender, EventArgs e) { int index = Convert.ToInt32(this.barNumericUpDown.Value); this.customBar.SizeValues[index] = this.sizeTrackBar.Value / 100.0; this.customBar.Repaint(); this.sizeValueLabel.Text = this.customBar.SizeValues[index].ToString(); } #endregion #region TChart 시리즈 클릭시 처리하기 - tChart_ClickSeries(sender, series, valueIndex, e) /// <summary> /// TChart 시리즈 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="series">시리즈</param> /// <param name="valueIndex">값 인덱스</param> /// <param name="e">이벤트 인자</param> private void tChart_ClickSeries(object sender, Series series, int valueIndex, MouseEventArgs e) { if(valueIndex >= 0) { this.barNumericUpDown.Value = valueIndex; } } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region 주석 갱신하기 - RefreshAnnotation() /// <summary> /// 주석 갱신하기 /// </summary> private void RefreshAnnotation() { int index = Convert.ToInt32(this.barNumericUpDown.Value); this.annotation.Text = index.ToString(); this.annotation.Shape.Top = this.tChart.Height - 28; this.annotation.Shape.Left = this.customBar.CalcXPosValue(this.customBar.XValues[index]) - 8; } #endregion } } |