Text size change

SOS
Hi everyone,
I want to know how can we edit the size of the text.
Can anyone help me to fix this ?
Best regards,

This can be configured:

const modeler = new Modeler({
  container,
  keyboard: {
    bindTo: document
  },
  textRenderer: {
    defaultStyle: {
      fontSize: '24px',
    },
    externalStyle: {
      fontSize: '24px',
    }
  },
});

Full example: Custom Font Size Example - CodeSandbox

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.