I'm trying to remove the extra text that is currently exported along side a graph builder output. Currently it will export the graph as one slide, then an extra slide that looks like this
![MMuhonen_0-1637012491229.png MMuhonen_0-1637012491229.png](https://community.jmp.com/t5/image/serverpage/image-id/37604i9D7FA083DA5FC72D/image-size/medium?v=v2&px=400)
I know that the "Where(xx rows excluded)" text is stored in the IfBox. If I manually remove or hide that, the graph will export without the extra dialogue text, but I can't seem to figure out what is the right code for removing it.
![MMuhonen_1-1637012560236.png MMuhonen_1-1637012560236.png](https://community.jmp.com/t5/image/serverpage/image-id/37605i09F974A92848DDC8/image-size/medium?v=v2&px=400)
vcdgb = Graph Builder(
Size( 1200, 1000 ),
Fit to Window("Off"),
Show Control Panel( 0 ),
Variables( X( :SampleDay ), Y( :y condition ), Overlay( :Experiment Cond ) ),
Elements( Points( X, Y, Legend( 8 ) ), Line( X, Y, Legend( 10 ) ) ),
);
vcdgb << Save Presentation("C:\JMP Summary.pptx");
Open("C:\JMP Summary.pptx");
Thanks!