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
Axis MaximumOffset
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Kevin,
The code below works fine here using v7.05 posted this week to our customer download area.
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 |
Instructions - How to post in this forum |