Open In App

SVG LineElement.y1 Property

Last Updated : 30 Mar, 2022
Summarize
Comments
Improve
Suggest changes
Like Article
Like
Save
Share
Report
News Follow

The SVG LineElement.y1 property returns an SVGAnimatedLength object corresponding to the attribute of the given line element

Syntax:

LineElement.y1

Return value: This property returns SVGAnimatedLength object that can be used to get the y1 of the line element

Example 1: 

HTML




<!DOCTYPE html>
<html>
  
<body>
    <svg width="350" height="350" 
        xmlns="http://www.w3.org/2000/svg">
  
        <line x1="10" x2="100" y1="10" y2="150" 
            id="gfg" stroke="green" />
  
        <script>
            var g = document.getElementById("gfg");
            console.log(g.y1)
        </script>
    </svg>
</body>
  
</html>


Output:

Example 2: 

HTML




<!DOCTYPE html>
<html>
  
<body>
    <svg width="350" height="350" 
        xmlns="http://www.w3.org/2000/svg">
  
        <line x1="10" x2="100" y1="100" 
            y2="150" id="gfg" stroke="green" />
  
        <script>
            var g = document.getElementById("gfg");
            console.log(g.y1)
        </script>
    </svg>
</body>
  
</html>


Output:



Next Article

Similar Reads

three90RightbarBannerImg
  翻译: