Set Page Setup for PDF not working as expected
Hello all, I am running the following code to try and adjust the Page Setup settings for this PDF before exporting it to my desktop. An example of my code looks like this:Names Default to Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
nw = New Window ("Charts",
obj = dt << Control Chart Builder( Variables( Y( :height, :weight ) ), Show Control Panel( 0 ), SendToReport(
) );
);
nw <<
...