I have a bar chart where the label text can be very long. Word wrapping this not satisfactory as a previous post indicated, so I have to clip the text. I'd like tooltips for the labels to show the complete label text, while keeping the tooltips on the bars showing the actual data value.
My reading here suggests that the chart control itself can't do multiple tooltip values??
Can I use the UltraWinToolTip control for this? This means I need a method which will identify the chart primitive under the mouse at any time (say within a mouseMove event) - how do I do this?
You can use chart's DataItemOver and DataItemOut events for this.In DataItemOver, e.Primitive is the primitive under the mouse. You can display its value in the tooltip control. In DataItemOut, clear the tooltip control's tooltip.
Hai
I dint see these two events in ultrawebchart. How can I get this?Can you give all sample code to get tooltip on all the X,Y axis labels(i.e. the points on the axis)?
Sridhar
related thread
http://community.infragistics.com/forums/p/30045/165536.aspx#165536
What version of the chart are you using? Do you see FillSceneGraph event on the chart control? What kind of intormation were you looking to display in the tooltip?