Skip to content

Commit 51c80dc

Browse files
authored
Update detect-datapoint-click-radchartview-winforms.md
1 parent c161a28 commit 51c80dc

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

knowledge-base/detect-datapoint-click-radchartview-winforms.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: How to detect DataPoint of RadBarSeries on Click in RadChartView
3-
description: Learn how to detect the underlying datapoint of a RadBarSeries when clicking on a specific bar in RadChartView.
2+
title: How to detect DataPoint of RadBarSeries on Mouse Click in RadChartView
3+
description: Learn how to detect the underlying datapoint of a BarSeries when clicking on a specific bar in RadChartView.
44
type: how-to
55
page_title: How to Detect DataPoint on Click in RadChartView for WinForms
66
meta_title: How to Detect DataPoint on Click in RadChartView for WinForms
77
slug: chartview-get-datapoint-mouse-click
8-
tags: radchartview, winforms, radbarseries, datapoint, mouseclick, hit-test
8+
tags: chartview, winforms, barseries, datapoint, mouseclick, hit-test
99
res_type: kb
1010
ticketid: 1691155
1111
---
@@ -26,6 +26,7 @@ To achieve this, handle the `MouseClick` event of RadChartView and use the `HitT
2626
Here is the code example:
2727

2828
````C#
29+
2930
this.radChartView1.MouseClick += RadChartView1_MouseClick;
3031

3132
private void RadChartView1_MouseClick(object sender, MouseEventArgs e)
@@ -44,9 +45,9 @@ private void RadChartView1_MouseClick(object sender, MouseEventArgs e)
4445
}
4546
}
4647

47-
```
48+
````
4849

4950
## See Also
5051

51-
- [RadChartView Documentation](https://docs.telerik.com/devtools/winforms/controls/chartview/overview)
52-
- [BarSeries](https://docs.telerik.com/devtools/winforms/controls/chartview/series-types/bar)
52+
* [RadChartView Documentation](https://docs.telerik.com/devtools/winforms/controls/chartview/overview)
53+
* [BarSeries](https://docs.telerik.com/devtools/winforms/controls/chartview/series-types/bar)

0 commit comments

Comments
 (0)