Axis MaximumOffset

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
kmanuele
Newbie
Newbie
Posts: 24
Joined: Wed Jan 12, 2005 5:00 am

Axis MaximumOffset

Post by kmanuele » Thu Oct 13, 2005 3:59 pm

TChart v7 Pro:

Setting the MaximumOffset property for an Axis has no effect, either via code or the chart editor, before or after data is added, of regardless of Axis->Automatic is true or false.

Is this property functional ??

Thanks

Kevin

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Fri Oct 14, 2005 7:54 am

Hi Kevin,

The code below works fine here using v7.05 posted this week to our customer download area.

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
begin
  Series1.FillSampleValues();
  Chart1.Axes.Left.MaximumOffset:=10;
end;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

kmanuele
Newbie
Newbie
Posts: 24
Joined: Wed Jan 12, 2005 5:00 am

Post by kmanuele » Wed Oct 19, 2005 2:24 pm

Thanks.

We developed our own substitute for MaximumOffset in v7.04

K

Post Reply