fazilcu Posted May 10, 2007 Report Share Posted May 10, 2007 I want to get value of the particular bar of the bar chart eg defautly chart is loaded with sale record of a product with countrywise information when clicking on particular country need to load the information of the particular country with statewise information. when we selecting a particuler state needed to load with zipcode wise information how can i implement this? Regards Link to comment Share on other sites More sharing options...
Frank Posted May 10, 2007 Report Share Posted May 10, 2007 Capture the MouseClick event, you will receive the Series and Point index as arguments. You can use the series and point index to retrieve the data or label of the point, for example: double data = chart.Data[e.Series,e.Point]; string label = chart.Data.Labels[e.Point]; Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.