I have composite column chart with two series, but I am not able to achieve:
1. to highlight the lables on x axis when the mouse hover over the column
2. to increase the space between columns
3. to highlight the series in the legend when hover over the column bar
4. to show a tooltip on the items in the legend
Please provide a sample to resolve it.
Thank you.
Essna
Still waiting for an answer
Thank you
Hello ,
In order to increase the space between columns you should use ColumnSpacing property
http://help.infragistics.com/Help/NetAdvantage/WinForms/2012.2/CLR4.0/html/Infragistics4.Win.UltraWinChart.v12.2~Infragistics.UltraChart.Resources.Appearance.ParetoChartAppearance~ColumnSpacing.html
To highlight label of X axis and legend’s box you could use DataItemOver event in order to get the primitive of the column which user was hovered, and also to handle ChartDrawItem event in order to manage the color X axis’ label and legend’s box based on the hovered element.
About the tooltip, if legend’s box should display same tooltip as the column, then you could set Caps property of the legend’s box primitive to Tooltip (also you could add and HitTest in order to highlight the column when legend’s box was hovered).
I’ve implemented small sample in order to demonstrate you this approach.
Please let me know if you have any further questions.