Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

how to add custom font families in typography of grapes js?

In grape.js library, on load, how to add custom font families in the typography. I’m trying but cannot find a way to add custom fonts. Anyone who add custom font families?

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

The only way to do so is to add it via the initialization object. Don’t specify any font family I just update its name.

buildProps: ['font-family', ...],
properties:[
    { name: 'Font', property: 'font-family'},
    ...

Default fonts are taken from its PropertyFactory so if you want to add others you have to declare them all on init.

buildProps: ['font-family', ...],
properties:[
    {  
        property: 'font-family',
        name: 'Font',
        list: [
            { name: 'Arial', value: 'Arial, Helvetica, sans-serif' }
            ...
        ]
    },
    ...
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading