Table of Contents

Example

<svg >
  <ellipse 
        cx="150" 
        cy="60" 
        rx="146" 
        ry="54"
        fill="#D5D8CB" 
        stroke="#ECDCC6" 
        stroke-width="6"/>
</svg>

where:

  • cx: The x-axis coordinate of the center of the ellipse.
  • cy: The y-axis coordinate of the center of the ellipse.
  • rx: The x-axis radius of the ellipse (width of the eclipse)
  • ry: The y-axis radius of the ellipse (height of the eclipse)

Documentation / Reference