Open In App

SVG EllipseElement.cy Property

The SVG EllipseElement.cy property Returns an SVGAnimatedLength object corresponding to the attribute of the given ellipse element

Syntax:



EllipseElement.cy

Return value: This property returns SVGAnimatedLength object that can be used get the cy of the Ellipse element

Example 1: 




<!DOCTYPE html>
<html>
  
<body>
    <svg width="300" height="200" xmlns="http://www.w3.org/2000/svg">
  <ellipse cx="100" cy="100" rx="100" ry="60" id="ellipse"
      onclick="outputSize();"/>
          <script>
              var g = document.getElementById("ellipse");
              console.log(g.cy)
          </script>
    </svg>
</body>
  
</html>

Output:



Example 2: 




<!DOCTYPE html>
<html>
  
<body>
    <svg width="300" height="200" xmlns="http://www.w3.org/2000/svg">
  <ellipse cx="100" cy="150" rx="100" ry="60" id="ellipse"
      onclick="outputSize();"/>
          <script>
              var g = document.getElementById("ellipse");
              console.log(g.cy)
          </script>
    </svg>
</body>
  
</html>

Output:


Article Tags :