Page 1 of 1

Axis.MinimumOffset and Axis.MaximumOffset

Posted: Fri Jan 08, 2010 1:23 pm
by 15653063
Hello,
I have a problem with the new version TeeChart 4.0.2009.42283.

The settings of Axis.MinimumOffset and Axis.MaximumOffset were no more used when Axis.Automatic is set to true.

I can give an example.

Best regards

Andreas Lindenthal

Re: Axis.MinimumOffset and Axis.MaximumOffset

Posted: Fri Jan 08, 2010 2:51 pm
by narcis
Hi Andreas,

Thanks for reporting. I could reproduce the issue here using code snippet below and added it to the defect list to be fixed with ID. TF02014628.

Code: Select all

			tChart1.Aspect.View3D = false;

			Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart);
			line1.FillSampleValues();

			//Using line below works.
			//tChart1.Axes.Bottom.SetMinMax(line1.MinXValue(), line1.MaxXValue());

			tChart1.Axes.Bottom.MinimumOffset = 100;
			tChart1.Axes.Bottom.MaximumOffset = 100;