i can´t set the property BottomAxis.LabelsFont.Name; if i set in in editor, e.g. to "Chiller", then the new font is shown correct in Editor at designtime, but in runtime "arial" is shown.
i tried to set the font at runtime with
chart.BottomAxis.Labelsfont.Name
or
Chart.Axes.Bottom.Labelsfont.Name
neither of these two version work, font is always shown in "Arial". Even if i read the Name in runtime in debugmode, "Chilla" is set !!
How can i fix this ?
BottomAxis.LabelsFont.Name
Re: BottomAxis.LabelsFont.Name
Hello,
Make sure the font is installed in your system. This works fine for me here:
Make sure the font is installed in your system. This works fine for me here:
Code: Select all
uses Chart, Series;
var Chart1: TChart;
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1:=TChart.Create(Self);
with Chart1 do
begin
Parent:=Self;
Align:=alClient;
Color:=clWhite;
Gradient.Visible:=False;
Walls.Back.Color:=clWhite;
Walls.Back.Gradient.Visible:=False;
Legend.Hide;
View3D:=False;
Title.Text.Text:='TeeChart';
Title.Font.Size:=20;
Title.Font.Name:='Chiller';
Axes.Left.LabelsFont.Size:=14;
Axes.Left.LabelsFont.Name:='Chiller';
Axes.Bottom.LabelsFont.Size:=14;
Axes.Bottom.LabelsFont.Name:='Chiller';
AddSeries(TPointSeries).FillSampleValues;
end;
end;
Best Regards,
![]() | Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) |
![]() ![]() ![]() ![]() ![]() ![]() |
Please read our Bug Fixing Policy |