How to set the content font size in Webix Ace Editor ?

How to set the content font size in Webix Ace Editor ?

Hello,
You can use getEditor() which returns an editor object. And, with the help of setOptions, you can set fontSize to editor.

let editor = $$("webix-ace-id").getEditor();
editor.setOptions({
  fontSize: "40pt"
});