Converting Aspose cells to PDF , text getting truncated

Hello,
I am trying to convert Excel file into pdf using Aspose cells and Aspose pdf.

The version I am using is Aspose.Cells 21.9.0 and Aspose.PDF 21.9.0.

The excel file get rendered correctly but when converting to pdf, the text in one of the column gets truncated. Is this a known issue? What is the work around?Excel.PNG (29.1 KB)
PDF.PNG (11.3 KB)

Thanks
Kapil

@kshah05,

Please try to add a line before saving to PDF if it makes any difference.
e.g.
Sample code:

Workbook workbook = new Workbook(“e:\test2\test.xlsx”);

Worksheet worksheet = workbook.Worksheets[0];
worksheet.AutoFitRows(true);

If you still find the issue, kindly zip and attach your template Excel file. We will check your issue soon.