Polygon Annotation in ASP.NET Core PDF Viewer
14 Aug 20269 minutes to read
Polygon annotations allow users to outline irregular regions, draw custom shapes, highlight non-rectangular areas, or create specialized callouts on PDFs for review and markup.

Enable Polygon Annotation in the Viewer
In the ASP.NET Core PDF Viewer, annotation modules such as Polygon annotation are enabled by default.
<div style="width:100%;height:650px">
<ejs-pdfviewer id="pdfviewer"
style="height:650px"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib">
</ejs-pdfviewer>
</div>Add Polygon Annotation
Add Polygon Annotation Using the Toolbar
- Open the Annotation Toolbar.
- Select Shapes → Polygon.
- Click multiple points on the page to draw the polygon.
- Double-click to finalize the shape.

NOTE
When in Pan mode, selecting a shape tool automatically switches the viewer to selection mode for smooth interaction.
Enable Polygon Mode
Switch the viewer into polygon mode using setAnnotationMode('Polygon').
<script>
function enablePolygonMode() {
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
viewer.annotation.setAnnotationMode('Polygon');
}
</script>Exit Polygon Mode
Switch back to normal mode using:
<script>
function exitPolygonMode() {
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
viewer.annotation.setAnnotationMode('None');
}
</script>Add Polygon Programmatically
Use the addAnnotation API to draw a polygon by specifying multiple vertexPoints.
<script>
function addPolygon() {
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
viewer.annotation.addAnnotation('Polygon', {
offset: { x: 200, y: 800 },
pageNumber: 1,
vertexPoints: [
{ x: 200, y: 800 }, { x: 242, y: 771 },
{ x: 289, y: 799 }, { x: 278, y: 842 },
{ x: 211, y: 842 }, { x: 200, y: 800 }
]
});
}
</script>Customize Polygon Appearance
Configure default polygon appearance (fill color, stroke color, thickness, opacity) using the polygonSettings property.
<div style="width:100%;height:650px">
<ejs-pdfviewer id="pdfviewer"
style="height:650px"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib">
</ejs-pdfviewer>
</div>
<script>
window.onload = function () {
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
viewer.polygonSettings = { fillColor: '#ffa5d8', strokeColor: '#ff6a00', thickness: 2, opacity: 0.9 };
}
</script>Manage Polygon (Edit, Move, Resize, Delete)
Edit Polygon
Edit Polygon (UI)
- Select a Polygon to view resize handles.
- Drag any side/corner to resize; drag inside the shape to move it.
- Edit fill, stroke, thickness, and opacity using the annotation toolbar.

Use the annotation toolbar:
-
Edit fill Color tool

-
Edit stroke Color tool

-
Edit Opacity slider

-
Edit Thickness slider

Edit Polygon Programmatically
Modify an existing Polygon programmatically using editAnnotation().
<script>
function editPolygonProgrammatically() {
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
for (var i = 0; i < viewer.annotationCollection.length; i++) {
var annot = viewer.annotationCollection[i];
if (annot.subject === 'Polygon') {
annot.strokeColor = '#0000ff';
annot.thickness = 2;
annot.fillColor = '#ffff00';
viewer.annotation.editAnnotation(annot);
break;
}
}
}
</script>Delete Polygon
The PDF Viewer supports deleting existing annotations through the UI and API.
See Delete Annotation for full behavior and workflows.
Comments
Use the Comments panel to add, view, and reply to threaded discussions linked to polygon annotations. It provides a dedicated interface for collaboration and review within the PDF Viewer.
Set properties while adding Individual Annotation
Configure per-annotation appearance while adding a polygon using addAnnotation.
<script>
function addMultiplePolygons() {
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
// Polygon 1
viewer.annotation.addAnnotation('Polygon', {
offset: { x: 200, y: 800 },
pageNumber: 1,
vertexPoints: [
{ x: 200, y: 800 }, { x: 242, y: 771 },
{ x: 289, y: 799 }, { x: 278, y: 842 },
{ x: 211, y: 842 }, { x: 200, y: 800 }
],
fillColor: '#ffa5d8',
strokeColor: '#ff6a00',
thickness: 2,
opacity: 0.9,
author: 'User 1'
});
// Polygon 2
viewer.annotation.addAnnotation('Polygon', {
offset: { x: 360, y: 800 },
pageNumber: 1,
vertexPoints: [
{ x: 360, y: 800 }, { x: 410, y: 770 },
{ x: 450, y: 810 }, { x: 430, y: 850 },
{ x: 380, y: 850 }, { x: 360, y: 800 }
],
fillColor: '#ffe600',
strokeColor: '#ff1010',
thickness: 3,
opacity: 0.85,
author: 'User 2'
});
}
</script>Disable Shape Annotation
Disable shape annotations (Polygon, Line, Rectangle, Circle, Arrow) using the enableShapeAnnotation property.
<div style="width:100%;height:650px">
<ejs-pdfviewer id="pdfviewer"
style="height:650px"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
enableShapeAnnotation = "false">
</ejs-pdfviewer>
</div>Handle Polygon Events
The PDF viewer provides annotation life-cycle events that notify when Polygon annotations are added, modified, selected, or removed.
For the full list of available events and their descriptions, see Annotation Events
Export and Import
The PDF Viewer supports exporting and importing annotations. For details on supported formats and workflows, see Export and Import annotations.