Could be an oversight that it isn't being captured (or maybe there is some other reason...) but you could add custom step to your workflow.
Names Default To Here(1);
Open("$SAMPLE_DATA/Big Class.jmp");
biv = bivariate(y(:weight), x(:height));
rbiv = biv << report;
rbiv << Save Presentation("$TEMP/jmp_example.pptx");
![jthi_0-1710273043021.png jthi_0-1710273043021.png](https://community.jmp.com/t5/image/serverpage/image-id/62148i5235C16CFAD72867/image-size/medium?v=v2&px=400)
https://www.jmp.com/support/help/en/17.2/#page/jmp/display-box-messages.shtml?os=win&source=applicat...
So if I use simple example based on PDF (image) saving step
![jthi_1-1710273080306.png jthi_1-1710273080306.png](https://community.jmp.com/t5/image/serverpage/image-id/62149i884B4A880FD14782/image-size/medium?v=v2&px=400)
and modify it a bit
![jthi_3-1710273216268.png jthi_3-1710273216268.png](https://community.jmp.com/t5/image/serverpage/image-id/62151i4F3AB7421AA91BCC/image-size/medium?v=v2&px=400)
Local({obj},
obj = (Data Table("Big Class") << Graph Builder(
Variables(X(:weight), Y(:height)),
Elements(Points(X, Y, Legend(3)), Smoother(X, Y, Legend(4)))
)) << Report;
obj << Save Presentation("$DOCUMENTS/jmp_example.pptx");
obj << Close Window;
)
-Jarmo