You wrote this for 8.05:
Will this fix the problem where sometimes the axis caption for custom axis is placed over the axis labels?16) [TV52013795]
Axes titles painted at the wrong position
under some circumstances. Fixed.
Will this fix the problem where sometimes the axis caption for custom axis is placed over the axis labels?16) [TV52013795]
Axes titles painted at the wrong position
under some circumstances. Fixed.
Code: Select all
uses Series;
procedure TForm1.FormCreate(Sender: TObject);
var Series1: TPointSeries;
begin
Series1:=TPointSeries.Create(Self);
Series1.ParentChart:=Chart1;
Series1.FillSampleValues();
Chart1.Legend.Visible:=false;
Chart1.Axes.Left.MinimumOffset:=10;
Chart1.Axes.Left.MaximumOffset:=10;
Chart1.Axes.Left.Title.Caption:='Left';
Chart1.Axes.Left.Labels:=false;
Chart1.Axes.Bottom.MinimumOffset:=10;
Chart1.Axes.Bottom.MaximumOffset:=10;
Chart1.Axes.Bottom.Title.Caption:='Bottom';
Chart1.Axes.Bottom.Labels:=false;
end;
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 |