Foot
Posted: Mon Jan 15, 2007 7:17 am
hello
it is possible to set foot of the chart to not visible but printable?
kind regards
it is possible to set foot of the chart to not visible but printable?
kind regards
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.Foot.Visible := false;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
Chart1.Foot.Caption := 'My Foot Title';
Chart1.Foot.Visible := true;
Chart1.Print();
Chart1.Foot.Visible := false;
end;