Is there a Standalone version for the export to pdf functionality? I want to get the base64 of the exported pdf and export it from a custom application.
When you are working with online export, you can request to receive the URL of stored file, instead of direct sending file to the user’s browsers. You can use such url to get the content of file and store or process it in any way.
Just use something like next
gantt.exportToPDF({
name:"mygantt.pdf",
callback:function(url){
//do something with file url
}
});
There is no standalone server-side export.
You can get the VM image for the existing online export though.