TeeChartの使い方 タイトル,フッター (TeeChart Pro 8.06)
With Chart1 do
begin
//タイトル
Title.Visible := True;
Title.Font.Color := clBlack;
Title.Font.Size := 11;
Title.Text.Clear;
Title.Text.Add(‘Title’);
Title.Alignment := taCenter;
Title.Transparent := False;
Title.Shadow.Visible := True;
//サブタイトル
SubTitle.Visible := True;
SubTitle.Font.Color := clBlue;
SubTitle.Font.Size := 10;
SubTitle.Text.Clear;
SubTitle.Text.Add(‘SubTitle’);
SubTitle.Alignment := taRightJustify;
SubTitle.Transparent := True;
//フッタータイトル
Foot.Visible := True;
Foot.Font.Color := clBlack;
Foot.Font.Size := 11;
Foot.Text.Clear;
Foot.Text.Add(‘Footer’);
Foot.Alignment := taCenter;
Foot.Transparent := False;
Foot.Shadow.Visible := False;
//フッターサブタイトル
SubFoot.Visible := True;
SubFoot.Font.Color := clBlue;
SubFoot.Font.Size := 10;
SubFoot.Text.Clear;
SubFoot.Text.Add(‘SubFooter’);
SubFoot.Alignment := taLeftJustify;
SubFoot.Transparent := True;
end;

