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
330
UltraPieChart two questions
posted

Please see the screen cap below for reference.

1) On the Legend, I'd like the first text to be lower - at the level of the top of the pie chart. Here is my current code for that:

Dim legend As New UltraItemLegend()
Me.Controls.Add(legend)
legend.Anchor = AnchorStyles.None
legend.Dock = DockStyle.Right
legend.Top = pieChart.Top
legend.Height = 460
pieChart.Legend = legend
legend.BringToFront()

2) When I mouseover other slices I do not get any mouseover text like I do with the UltraCategoryChart bar chart. It would be idea to see "Requested 45" for example when I mouseover the green area. 

Thanks!

  • 7375
    Offline posted in reply to Ted Wilson

    Hello Ted,

    With UltraPieChart you can use UltraItemLegend only. We do have ‘Top’ property off the UltraItemLegend but since you docked the legend to the right it will take up all the available space on the right and top property will do nothing.

    You can test that by comment out the legend docking and set the legend.Top to may be 50, the way you are doing and it will work fine.

    Here is the list of all the available properties of the UltraPieChart for your reference.

    -