Sorry for the basic question, but I'm seeing this for the first time today and have no time to experiment!! I have the basic functionality working, but bothered by a cosmetic issue!
When I drag an UltraWinChart onto my form there's a lot of empty white space outside the left and bottom axis. What is that space for and how can I turn it off?
thanks!
Deanna
3D charts don't make use of the extent property. You can set chart.Transform3D.Scale to 100, chart.PieChart3D.RadiusFactor = 100 and rotate the pie chart so that it's vertically flat. You also have to make sure that the scene displaying the pie chart is square. Beyond that, I'm afraid there is no way to reduce the white space.
Max Rivlin"] Change the value of the Extent property, which is set to 80 pixels by default.For example, chart.Axis.X.Extent = 10chart.Axis.Y.Extent = 10
Change the value of the Extent property, which is set to 80 pixels by default.For example, chart.Axis.X.Extent = 10chart.Axis.Y.Extent = 10
What about the wasted whitespace on 3D charts? The Extent property is not applicable to them. I have a similar issue with a 3D Pie chart (appears to always have about 80 px on bottom & about 60 px on left & right.) I've already set title extent and padding to 0. Is there any way to recover that wasted whitespace?
AYS,
Jeff