I am attempting to try the new PDF experimental process in PowerApps. Here is the formula that I am using.
Office365Outlook.SendEmailV2(User().Email,"Deployment Report for "&Today(),"Please see attached Deployment Report.",{Attachments:Table({Name:"Deployment Report for " &Today()&".pdf",ContentBytes:PDF(ScreenContainer6_23,{Orientation:PaperOrientation.Landscape,Size:PaperSize.Letter})})})
The ScreenContainer6_23 contains all of the charts and data and is all contained on one page. The print function that I have tried is not useful because it is essentially a screenshot and creates enough of its own issues.
Here is the issue. When I PDF the page, two things happen: the charts show up as black boxes and the PDF is 86 pages instead of one.
Original Page:

PDF Version:

Not sure what I am missing.