How can I help you?
Circle Annotation (Shape) in Angular PDF Viewer
26 Mar 20268 minutes to read
Circle annotations let users highlight circular regions or draw emphasis bubbles on PDFs for reviews and markups. You can add circles from the toolbar, switch to circle mode programmatically, customize appearance, edit/delete them in the UI, and export them with the document.

Enable Circle Annotation in the Viewer
To enable Circle annotations, inject the following modules into the Angular PDF Viewer:
import { Component } from '@angular/core';
import {
PdfViewerModule,
ToolbarService,
AnnotationService
} from '@syncfusion/ej2-angular-pdfviewer';
@Component({
selector: 'app-root',
template: `
<div class="content-wrapper">
<ejs-pdfviewer
id="pdfViewer"
[documentPath]="document"
[resourceUrl]="resource"
style="height:650px;display:block">
</ejs-pdfviewer>
</div>
`,
imports: [PdfViewerModule],
providers: [ToolbarService, AnnotationService]
})
export class AppComponent {
public document: string =
'https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf';
public resource: string =
'https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib';
}Add Circle Annotation
Apply Circle Annotation Using the Toolbar
- Open the Annotation Toolbar.
- Select Shapes → Circle.
- Click and drag on the PDF page to draw the circle (ellipse).

NOTE
When in Pan mode, selecting a shape tool automatically switches the viewer to selection mode for smooth interaction.
Enable Circle Mode
Switch the viewer into circle mode using setAnnotationMode('Circle').
enableCircleMode(): void {
const pdfViewer = (document.getElementById('pdfViewer') as any).ej2_instances[0];
pdfViewer.annotationModule.setAnnotationMode('Circle');
}Exit Circle Mode
Switch back to normal mode using:
exitCircleMode(): void {
const pdfViewer = (document.getElementById('pdfViewer') as any).ej2_instances[0];
pdfViewer.annotationModule.setAnnotationMode('None');
}Add Circle Programmatically
Use the addAnnotation API to draw a circle (ellipse) at a specific location.
addCircle(): void {
const pdfViewer = (document.getElementById('pdfViewer') as any).ej2_instances[0];
pdfViewer.annotation.addAnnotation('Circle', {
offset: { x: 200, y: 620 },
pageNumber: 1,
width: 90,
height: 90
});
}Customize Circle Appearance
Configure default circle appearance (fill color, stroke color, thickness, opacity) using the circleSettings property.
import { Component } from '@angular/core';
import {
PdfViewerModule,
ToolbarService,
AnnotationService
} from '@syncfusion/ej2-angular-pdfviewer';
@Component({
selector: 'app-root',
template: `
<div class="content-wrapper">
<ejs-pdfviewer
id="pdfViewer"
[documentPath]="document"
[resourceUrl]="resource"
[circleSettings]="circleSettings"
style="height:650px;display:block">
</ejs-pdfviewer>
</div>
`,
imports: [PdfViewerModule],
providers: [ToolbarService, AnnotationService]
})
export class AppComponent {
public document: string =
'https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf';
public resource: string =
'https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib';
// Circle annotation default settings
public circleSettings = {
fillColor: '#ffa500',
strokeColor: '#ff6a00',
thickness: 2,
opacity: 0.9
};
}Manage Circle (Edit, Move, Resize, Delete)
Edit Circle
Edit Circle (UI)
- Select a Circle 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 Circle Programmatically
Modify an existing Circle programmatically using editAnnotation().
editCircleProgrammatically(): void {
const pdfViewer = (document.getElementById('pdfViewer') as any).ej2_instances[0];
for (const annot of pdfViewer.annotationCollection) {
if (annot.subject === 'Circle') {
annot.strokeColor = '#0000ff';
annot.thickness = 2;
annot.fillColor = '#ffff00';
pdfViewer.annotation.editAnnotation(annot);
break;
}
}
}Delete Circle
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 circle annotations. It provides a dedicated interface for collaboration and review within the PDF Viewer.
Set properties while adding Individual Annotation
Set properties for individual circle annotations by passing values directly during addAnnotation.
addMultipleCircles(): void {
const pdfViewer = (document.getElementById('pdfViewer') as any).ej2_instances[0];
// Circle 1
pdfViewer.annotation.addAnnotation('Circle', {
offset: { x: 200, y: 620 },
pageNumber: 1,
width: 100,
height: 100,
opacity: 0.9,
strokeColor: '#ff6a00',
fillColor: '#ffa500',
author: 'User 1'
});
// Circle 2
pdfViewer.annotation.addAnnotation('Circle', {
offset: { x: 340, y: 620 },
pageNumber: 1,
width: 80,
height: 80,
opacity: 0.85,
strokeColor: '#ff1010',
fillColor: '#ffe600',
author: 'User 2'
});
}Disable Circle Annotation
Disable shape annotations (Line, Arrow, Rectangle, Circle, Polygon) using the enableShapeAnnotation property.
import { Component } from '@angular/core';
import {
PdfViewerModule,
ToolbarService,
AnnotationService
} from '@syncfusion/ej2-angular-pdfviewer';
@Component({
selector: 'app-root',
template: `
<div class="content-wrapper">
<ejs-pdfviewer
id="pdfViewer"
[enableShapeAnnotation]="false"
[documentPath]="document"
[resourceUrl]="resource"
style="height:650px;display:block">
</ejs-pdfviewer>
</div>
`,
imports: [PdfViewerModule],
providers: [ToolbarService, AnnotationService]
})
export class AppComponent {
public document: string =
'https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf';
public resource: string =
'https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib';
}Handle Circle Events
The PDF viewer provides annotation life-cycle events that notify when Circle 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.