hello,
hidden chart-data-labels are displayed in thumbnail. Please use the attachment to create thumbnail and compare the slide and the png. Thank you!
using (Presentation presentation = new Presentation(filePath))
{
for (int index = 0; index < presentation.Slides.Count; index++)
{
ISlide presentationSlide = presentation.Slides[index];
using (Bitmap image = presentationSlide.GetThumbnail(1,1))
image.Save($@"test.png");
}
}
test.zip (112.6 KB)