ZVON > References > Zvon Example Repository
Example repository: index | categories | search

All > SVG > Shapes > Drawing a filled ellipse

The ellipse can be displayed using the ellipse element. Fill color can be set using the fill attribute.


Output
Output - picture
SVG version


Source
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg" >
     <ellipse cx="50" cy="50" rx="20" ry="10" fill="blue"/>
</svg>