web api instance property
SVGPolygonElement: points property
The points read-only property of the SVGPolygonElement interface reflects the base (i.e., static) value of the element’s points attribute. Modifications via the SVGPointList object are reflected in the points attribute, and vice versa.
Value
A SVGPointList object.
Examples
Accessing the points property
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200">
<polygon id="myPolygon" points="100,10 150,50 100,90 50,50" fill="blue" />
</svg>
const polygonElement = document.getElementById("myPolygon");
// Access the points property
console.dir(polygonElement.points); // Output: SVGPointList object containing points (100,10), (150,50), (100,90), (50,50)
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.