private void chart1_MouseClick(object sender, MouseEventArgs e)
{
HitTestResult result = chart1.HitTest(e.X, e.Y);
if (result.ChartElementType == ChartElementType.DataPoint && result.PointIndex != -1)
{
Log(result.PointIndex.ToString());
}
}
'C# Programming' 카테고리의 다른 글
C#으로 ACCESS db 파일 만들기 (0) | 2023.08.24 |
---|---|
C#의 lock 키워드 이해하기 (0) | 2023.08.23 |
C# PropertyChanged 예제 (0) | 2022.10.10 |
C# 외부프로그램 실행시키기 - 간단한 방법 (0) | 2022.05.26 |
C# Json 변환 읽기 (0) | 2022.05.15 |