TAChart: Revert changes in r48174 (better fix of issue #27620 in r48177 #5b7d8edc77)

git-svn-id: trunk@48178 -
This commit is contained in:
wp 2015-03-09 15:44:13 +00:00
parent 5b7d8edc77
commit 6c4845ba6e

View File

@ -406,14 +406,10 @@ procedure TSeriesPointer.DrawSize(ADrawer: IChartDrawer;
SetLength(pts, Length(AStr));
for i := 1 to Length(AStr) do begin
if AStr[i] = ' ' then begin
ADrawer.Polygon(pts, 0, j);
{
// modified by wp: polyline does not draw pointer border correctly on qt, see issue #0027620
if Brush.Style = bsClear then
ADrawer.Polyline(pts, 0, j)
else
ADrawer.Polygon(pts, 0, j); // Winding?
}
j := 0;
end
else begin