Hi to All. There is a property of the UltraChart control that I seem unable to locate and/or change. It is shown in the diagram below as the region between the X2 axis line and the top of the control. In this example the X2 Axis is visible (i.e. UltraChart1.Axis.X2.Visible = True) but its extent is zero (i.e. UltraChart1.Axis.X2.Extent = 0). Setting UltraChart1.Axis.X2.Visible = False or changing the Margin and Padding properties of the control do not fix this problem either.
sorry, but you can't reclaim this space without manually repositioning the primitives in FillSceneGraph or ChartDrawItem.
you can request this feature here: http://devcenter.infragistics.com/protected/requestfeature.aspx
one solution you can try is placing the chart in a Panel, then setting the chart's Location to something like 0, -25
Thanks for that David. That is the solution that I ended up employing. I used a constant of 11 pixels which represents that border at all edges of the control. It just would have been nice to have that value as a readonly property of the control in case that value is ever changed by Infragistics in the future. I will request that property as a feature as you have suggested.