TAChart: Do not fill polylines in SVG export. Fixes #23982

git-svn-id: trunk@41769 -
This commit is contained in:
ask 2013-06-19 15:18:16 +00:00
parent 52c6ef4a82
commit 26622f6def

View File

@ -280,7 +280,7 @@ procedure TSVGDrawer.Polyline(
const APoints: array of TPoint; AStartIndex, ANumPts: Integer);
begin
WriteFmt(
'<polyline points="%s" style="stroke: %s;"/>',
'<polyline points="%s" style="fill: none; %s"/>',
[PointsToStr(APoints, AStartIndex, ANumPts), StyleStroke]);
end;