Exporting a MS project file to PDF including the critical path?

Hi, a question regarding the functionality of exporting a MPP file to PDF. In MS project there is an option to highlight the Critical path of the project can that be included when exporting the content to PDF using aspose.taks?

Thanks, Lars

@lars.olsson,

Could you please share such a sample file with us for our reference and further consideration?

It is more of a display feature to my understanding. This help section from MS describes the feature

Thanks

@lars.olsson,

We’ll look into it and share our feedback with you here about any such possible implementation.

@lars.olsson,

Please use the MarkCriticalTasks property of PdfSaveOptions to true for this purpose.

PdfSaveOptions opt = new PdfSaveOptions();
opt.MarkCriticalTasks = true;