While converting ppt to pdf, I see that the chart I have is getting missed out. I have a combo chart with 3 series. While the chart title shows up in the converted pdf, the chart itself is missing. Attaching my ppt for reference. Am loading this ppt, making changes and then saving it to a memory stream.
The freespire version am using is - FreeSpire.Office 2.15.0.
Any help would be much appreciated.
- Code: Select all
using (var ms = new MemoryStream())
{
if (pdf)
{
ppt.SaveToFile(ms, FileFormat.PDF);
}
else
{
ppt.SaveToFile(ms, FileFormat.Pptx2010);
}
pptBuffer = ms.ToArray();
}