Contact Support
Customize font family drop down in EJ2 JavaScript Document editor control
3 May 20251 minute to read
Document editor provides an options to customize the font family drop down list values using fontfamilies
in Document editor settings. Fonts which are added in fontFamilies of documentEditorSettings
will be displayed on font drop down list of text properties pane and font dialog.
Similarly, you can use documentEditorSettings
property for DocumentEditor also.
The following example code illustrates how to change the font families in Document editor container.
let container: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true,height: '590px',
// Add required font families to list it in font drop down
documentEditorSettings: {
fontFamilies: ['Algerian', 'Arial', 'Calibri', 'Windings'],
}
});
DocumentEditorContainer.Inject(Toolbar);
container.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
container.appendTo('#container');
The Web API hosted link
https://services.syncfusion.com/js/production/api/documenteditor/
utilized in the Document Editor’s serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the GitHub Web Service example or Docker image for hosting your own web service and use for the serviceUrl property.
Output will be like below: