Customize print options

Hey there! Sorry for the delay in response, we had a long weekend.

Unfortunately, we don’t have APIs to customize the print modal. I would suggest creating your own modal instead and using our print api to programmatically print.

You can overwrite the default functionality of that button like so:

instance.updateElement('printButton', {
    onClick: () => {
      openYourCustomPrintModal()
    }
  })

Then, in your modal, you would display whatever UI you want, and pass whatever options the user chooses into the print API mentioned above.

Let me know if you run into any issues!

Thanks,
Logan