[TEECHART/WINFORM] TChart 클래스 : ClickLegend 이벤트를 사용해 레전드 클릭시 처리하기
TeeChart/WinForm 2022. 7. 5. 14:50728x90
반응형
728x170
▶ MainForm.cs
using System.Drawing;
using System.Windows.Forms;
using Steema.TeeChart.Drawing;
using Steema.TeeChart.Styles;
namespace TestProject
{
/// <summary>
/// 메인 폼
/// </summary>
public partial class MainForm : Form
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 생성자 - MainForm()
/// <summary>
/// 생성자
/// </summary>
public MainForm()
{
InitializeComponent();
this.tChart.Panel.Pen = new ChartPen(Color.Black);
for(int i = 0; i < 10; i++)
{
Points points = new Points(this.tChart.Chart);
points.FillSampleValues(20);
}
this.tChart.ClickLegend += tChart_ClickLegend;
}
#endregion
//////////////////////////////////////////////////////////////////////////////////////////////////// Method
////////////////////////////////////////////////////////////////////////////////////////// Private
#region TChart 클래스 레전드 클릭시 처리하기 - tChart_ClickLegend(sender, e)
/// <summary>
/// TChart 클래스 레전드 클릭시 처리하기
/// </summary>
/// <param name="sender">이벤트 발생자</param>
/// <param name="e">이벤트 인자</param>
private void tChart_ClickLegend(object sender, MouseEventArgs e)
{
int index = this.tChart.Legend.Clicked(e.X, e.Y);
if(index > -1)
{
for(int i = 0; i < this.tChart.Series.Count; i++)
{
this.tChart[i].Transparency = 0;
if(i != index)
{
this.tChart[i].Transparency = 70;
}
}
}
}
#endregion
}
}
728x90
반응형
그리드형(광고전용)
'TeeChart > WinForm' 카테고리의 다른 글
[TEECHART/WINFORM] ACFunction 클래스 : AC(Acceleration/Deceleration Technical Indicator) 지수 차트 그리기 (0) | 2022.05.06 |
---|---|
[TEECHART/WINFORM] ADXFunction 클래스 : ADX(Average Directioinal Movement Index) 지수 차트 그리기 (0) | 2022.05.05 |
[TEECHART/WINFORM] AxisArrow 클래스 : 축 화살표 사용하기 (0) | 2022.05.05 |
[TEECHART/WINFORM] PercentChange 클래스 사용하기 (0) | 2022.04.25 |
[TEECHART/WINFORM] MedianFunction 클래스 사용하기 (0) | 2022.04.25 |
[TEECHART/WINFORM] Low/Average/High 클래스 사용하기 (0) | 2022.04.25 |
[TEECHART/WINFORM] Count 클래스 : Period 속성 사용하기 (0) | 2022.04.25 |
[TEECHART/WINFORM] Divide 클래스 사용하기 (0) | 2022.04.25 |
[TEECHART/WINFORM] Multiply 클래스 사용하기 (0) | 2022.04.25 |
[TEECHART/WINFORM] Subtract 클래스 사용하기 (0) | 2022.04.25 |
댓글을 달아 주세요