Finding series item clicked in a chart in VB 2008
问题 I am using VB 2008 with the Microsoft Chart Controls for .NET Framework. Using a pie chart, I would like to find the selected item when the chart is clicked or double clicked. I am have the click and doubleclick events as shown here, which I have confirmed is being hit, and the the eventarts contains the x,y position of the click. Private Sub Chart_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Private Sub Chart_Click(ByVal sender As Object, ByVal e As System.EventArgs) What