List format in Angular Document Editor component
27 Jul 20266 minutes to read
Angular Document Editor (Document Editor) supports both single-level and multilevel lists. Lists are used to organize data as step-by-step instructions in documents for easy understanding of key points. You can apply a list to paragraphs using the supported APIs.
Create bullet list
Bullets are usually used for unordered lists. To apply a bulleted list to selected paragraphs, use the following method of the Editor instance.
applyBullet(bullet, fontFamily);
| Parameter | Type | Description |
|---|---|---|
| Bullet | string | Bullet character. |
| fontFamily | string | Bullet font family. |
Refer to the following sample code.
this.documentEditor.editor.applyBullet('\uf0b7', 'Symbol');Create numbered list
Numbered lists are usually used for ordered lists. To apply a numbered list to selected paragraphs, use the following method of the Editor instance.
applyNumbering(numberFormat,listLevelPattern)
| Parameter | Type | Description |
|---|---|---|
| numberFormat | string | The “%n” representations in the numberFormat parameter will be replaced by the respective list level’s value. “%1)” will be displayed as “1)”. |
| listLevelPattern(optional) | string | Default value is ‘Arabic’. |
Refer to the following example.
this.documentEditor.editor.applyNumbering('%1)', 'UpRoman');Clear list
You can also clear the list formatting applied to selected paragraphs. Refer to the following sample code.
this.documentEditor.editor.clearList();Working with lists
The following sample demonstrates how to create bulleted and numbered lists in Document Editor.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { ButtonModule } from '@syncfusion/ej2-angular-buttons'
import { DocumentEditorAllModule } from '@syncfusion/ej2-angular-documenteditor'
import { ToolbarModule } from '@syncfusion/ej2-angular-navigations'
import { ComboBoxModule } from '@syncfusion/ej2-angular-dropdowns'
import {ColorPickerModule } from '@syncfusion/ej2-angular-inputs'
import { Component, ViewEncapsulation, ViewChild } from '@angular/core';
import {
DocumentEditorComponent, EditorService, SelectionService, EditorHistoryService, SfdtExportService
} from '@syncfusion/ej2-angular-documenteditor';
@Component({
imports: [
ButtonModule,
ToolbarModule,
DocumentEditorAllModule,
ComboBoxModule,
ColorPickerModule
],
standalone: true,
selector: 'app-container',
styleUrls: ['./style.css'],
//specifies the template string for the Document Editor component
template: `<div>
<div>
<ejs-toolbar (clicked)='toolbarButtonClick($event)'>
<e-items>
<e-item prefixIcon="e-de-ctnr-bullets e-icons" tooltipText="Bullets" id="Bullets"></e-item>
<e-item prefixIcon="e-de-ctnr-numbering e-icons" tooltipText="Numbering" id="Numbering"></e-item>
<e-item text="Clear" id="clearlist" tooltipText="Clear List"></e-item>
</e-items>
</ejs-toolbar>
</div>
<ejs-documenteditor #document_editor [enableSelection]='true' [isReadOnly]='false' [enableEditor]=true [enableEditorHistory]=true [enableSfdtExport]=true height="330px" style="display:block"></ejs-documenteditor>
</div>`,
encapsulation: ViewEncapsulation.None,
//Provide necessary service.
providers: [EditorService, SelectionService, EditorHistoryService, SfdtExportService]
})
export class AppComponent {
@ViewChild('document_editor')
public documentEditor?: DocumentEditorComponent;
public toolbarButtonClick(args: any) {
switch (args.item.id) {
case 'Bullets':
//To create bullet list
(this.documentEditor as DocumentEditorComponent).editor.applyBullet('\uf0b7', 'Symbol');
break;
case 'Numbering':
//To create numbering list
(this.documentEditor as DocumentEditorComponent).editor.applyNumbering('%1)', 'UpRoman');
break;
case 'clearlist':
//To clear list
(this.documentEditor as DocumentEditorComponent).editor.clearList();
break;
}
}
}import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));Editing numbered list
Document Editor restarts the numbering or continues numbering for a numbered list. These options are found in the built-in context menu if the list value is selected. Refer to the following screenshot.

Online Demo
Explore how to apply bullets and numbering in Word documents using the Angular Document Editor in this live demo.