Page 1 of 1

[BoxPlot] Zoom display isn't correct for only one BoxPlot

Posted: Thu Oct 05, 2006 3:38 pm
by 9336299
We have discovered a defect when we use BoxSeries. When only one BoxSeries is displayed in chart and a zoom is performed on BoxPlot, only half of box is displayed at left of chart (zoomed boxplot is not centered on chart).

Posted: Fri Oct 06, 2006 7:49 am
by narcis
Hi SiA,

I guess this is because with only one series the bottom axis only has a zero value. Using the code line below makes this work:

Code: Select all

Chart1.Axes.Bottom.SetMinMax(Series1.MinXValue-1,Series1.MaxXValue+1);