Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
60
How to create a Popup window when hovering over a series in a Bar Chart?
posted

Hi there,

I have a Bar chart with one series defined as follows:

 

 

seriesNetAdvantage.DataSource = netAdvantage.Tables["NetAdvantage"];

seriesNetAdvantage.DataMapping = "Value = Advantage; Label = Label";

seriesNetAdvantage.DataPointColor = DataPointColor.Different;

 

 

Basically right now, the "NetAdvantage" table has only two columns (Advantage & Label), but  I would like to add extra columns to that table, and when the user hovers over one of the bars in the chart, a small window would popup over the bar and will display the values of those other columns...

 

Any ideas how I can accomplish that?

Thanks