See the attached image.
I'm having the hardest time controlling the size of the area highlighted in pink. The chart's Margin property doesn't appear to control this space, and I've tried tweaking the near and far margins of the axes, only to discover that the chart's plot area gets cut off when it ventures into the higlighted area. As you can see, I've already disabled display of axis labels, expecting that this area would collapse. This needs to go in a GUI with limited screen real estate and the extra space (especially top & bottom) is really killing me. Any ideas?
Thanks!fm
You can try:
this.ultraChart1.Axis.X2.Extent = 0;
this.ultraChart1.Axis.Y2.Extent = 0;
I'm not using the X2 or Y2 axes, but I went ahead and set their Extent properties to zero with no change. The X and Y axes were already set at zero. Any other ideas?
try setting Axis.X.Visible = false. for a chart control with 47px height, the unused space should be smaller than in your image.