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
For simple tooltips you can just set a ToolTip in your DataMapping. For more complex scenarios, you may want to try this strategy:
http://forums.infragistics.com/forums/p/38424/221145.aspx#221145
Hope this helps!
-Graham