Corner JoinStyle on a chart title frame
Posted: Mon Aug 15, 2016 1:05 pm
I am trying to set the corner shape on a frame around the chart title like so:
But the corners always come out round. Where am I going wrong?
Code: Select all
procedure TForm3.FormCreate(Sender: TObject);
begin
with Chart1 do
begin
Title.Transparent:=False;
Title.Frame.Visible:=True;
Title.RoundSize:=32;
Title.Frame.JoinStyle:=jsBevel; // or jsRound or jsMitter
end;
end;