Change default type font family Hand Writte Signature (Angular)

Hello, everyone!

Is it possible to change the default font type in the handwritten signature?

I need to change the default font type “Symbol.”


Image_2065_1766171250627


Regards.


3 Replies

PA Priyadharshini Annamalai Syncfusion Team December 22, 2025 05:45 PM UTC

Hi 


We have the option to change the font family for handwritten signatures. Below, we’ve shared the documentation that explains how to update the font family type for handwritten signatures. Please review and let us know if this meets your requirements or if you encounter any issues.


Documentation Link: Change the Font Family in Angular PDF Viewer component | Syncfusion


Regards,

Priyadharshini



OM Otto Moura Machado Filho January 8, 2026 09:47 PM UTC

Hi Priyadharshini,

I'm use "syncfusion/ej2-angular" version: 31.2.12 and don't have "typeSignatureFonts" array in 

pdfviewer.handWrittenSignatureSettings.


follow the image of object:

Image_2527_1767908699016

So, I can't configure the fonts.

Could you help me?

 

Regards.



VS Venkada Subramanian Durai Syncfusion Team January 14, 2026 11:25 AM UTC

Hi Otto Moura Machado Filho,

Thank you for the update. As mentioned, the typeSignatureFonts API (custom property) is not set internally by default, but it can be added dynamically at the application level.
 

We have attached a simple working implementation using Syncfusion Angular PDF Viewer v31.2.12, which demonstrates how to add custom fonts to the handwritten signature dialog. Please review the sample and check whether it meets your requirements, and let us know if you have any questions.

Code snippet:
 

   <ejs-pdfviewer

      #pdfviewer

      id="pdfViewer"

      [documentPath]="document"

      [resourceUrl]="resource"

      [handWrittenSignatureSettings]="handWritten"

      style="height:640px;display:block"

    ></ejs-pdfviewer>

 

  public handWritten = {

    //set the custom fonts here and add the respective styles import in HTML head tags

    typeSignatureFonts: ['Allura', 'Tangerine', 'Sacramento', 'Inspiration'],

  };

 

Sample with typeSignatureFonts API


Regards,
Venkada Subramanian D


Loader.
Up arrow icon