Search found 2193 matches

First you need to look at the outgoing request. Please refer to this troubleshooting guide for tips: https://github.com/bryntum/pdf-export-server/blob/main/docs/troubleshooting.md If request says landscape and Letter then problem must be on the server side which ignores page orientation. Check serve...
Hello. Problem in our demo was caused by outdated puppeteer. We've upgraded server and now it does export everything correctly. There is a related issue: https://github.com/bryntum/support/issues/8291 It was fixed in 5.6.6 by upgrading CSS. If you host resources from the pdf export server (using -r ...
Reproduced, ticket opened here: https://github.com/bryntum/support/issues/8465 Thank you for report. You can specify different page dimensions to make it fit the print preview window: import { PaperFormat } from '../../lib/Grid/feature/export/Utils.js'; PaperFormat.Letter = { landscapeHeight : 8.4, ...
Hello. As Nige mentioned above, you can use event. Event also has a reference to a response object: https://bryntum.com/products/gantt/docs/api/Grid/feature/export/PdfExport#event-pdfExport gantt.on({ pdfExport({ response }) { // process response here } }) With an event listener you will be notified...
Parent tasks can absolutely be moved by the dependencies. Try on our advanced demo: https://bryntum.com/products/gantt/examples/advanced/ Task start date is ultimately defined by one of these things: project start date (or end date) incoming dependencies own constraints provided start date for manua...
/resource/1703773714000/bryntum_gantt/css/gantt.stockholm.min.css The highlighted part of the link is dynamically generated, so we can't build the same hierarchy on the print server I mentioned this function because it would allow you to also replace generated part. It means you can decrease nestin...

Hello.
You can transform paths to styles as you like. You can use this method to replace links with smth more predictable: https://bryntum.com/products/gantt/docs/api/Grid/feature/export/PdfExport#function-filterStyles E.g. you can replace url.replace(/\d+\//, '')

Hello.
Which name do you use for the feature? It is supposed to be scheduleMenu: https://bryntum.com/products/gantt/docs/api/Scheduler/feature/ScheduleMenu

Hello. Please carefully read architecture guide which explains in full details why is there an option for a server to host own resources: https://github.com/bryntum/pdf-export-server/blob/main/docs/architecture.md You should realize, that if you follow that path, server should hold all required reso...
Hello. I see content itself is displayed correctly, meaning CSS is in place. Orientation is controlled by the client by providing orientation config in the network request: https://github.com/bryntum/pdf-export-server/blob/fa3518029ed6418c2145a24957c8d8112fcd25b8/src/queue.js#L627C28-L627C28 If you ...