Jump to content
Software FX Community

value of the particular bar of the bar chart


fazilcu

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...