TAChart: Draw psCircle pointers of the same size as other types

git-svn-id: trunk@29987 -
This commit is contained in:
ask 2011-03-23 06:38:34 +00:00
parent e58ceb3294
commit 038d161836

View File

@ -835,9 +835,9 @@ begin
if Style = psCircle then
ADrawer.Ellipse(
ACenter.X - ASize.X, ACenter.Y - ASize.Y,
ACenter.X + ASize.X, ACenter.Y + ASize.Y)
ACenter.X + ASize.X + 1, ACenter.Y + ASize.Y + 1)
else
DrawByString(DRAW_STRINGS[FStyle] + ' ');
DrawByString(DRAW_STRINGS[Style] + ' ');
end;
procedure TSeriesPointer.SetBrush(AValue: TBrush);