Yaakov Shoham
Yaakov Shoham

Reputation: 10548

Differences between polygon and polyline

What is the difference between Polygon and Polyline in SVG? I replaced all the dots in those 2 samples and the results were exactly the same (in Google Chrome):

Is it just semantic difference without any actual result?

Upvotes: 18

Views: 14401

Answers (1)

omakoleg
omakoleg

Reputation: 579

Try to add this:

style="fill:yellow;stroke:purple;stroke-width:1"

to both examples , instead of

 fill="red"

and you'll see difference.

Polyline doesn't connect last point to first ! Polygon - always connects last point to the first. Problem was, that line color and fill color were the same.

Upvotes: 30

Related Questions