ACE editor settings

Hello,

What is a way to change ACE editor settings, such as font size etc.? I tried this:

{
                view: "ace-editor",
                id: "zine_editor",
                theme: "github",
                mode: "json",
                fontSize: "10pt",
                wrap: true,
                displayIndentGuides: true,
                value: JSON.stringify(json_txt, null, ' ')
}

And it doesn’t work for fontSize, wrap and displayIndentGuides.

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

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