Hi all,
I need some help. I am trying output all these graphs generated in Graph Builder into powerpoint.
GB = dt1 << Graph Builder(
Size( 1746, 750 ),
Show Control Panel( 0 ),
Variables(
X( :Parameter, Order By( :Mean, Descending, Order Statistic( "Mean" ) ) ),
Y( :Mean ),
Group Y( :Code ID ),
Overlay( :Status )
),
Elements( Bar( X, Y, Legend( 1 ) ) ),
By( :SequenceTest ),
SendToReport(
Dispatch(
{},
"Parameter",
ScaleBox,
{Label Row(
{Automatic Font Size( 0 ), Label Orientation( "Perpendicular" ),
Tick Mark Style( "Short Divider" ), Set Font Size( 10 )}
)}
),
Dispatch( {}, "graph title", TextEditBox, {Set Text( "Comparison" )} )
)
);
I have tried many ways to put this into pptx but did not get it correct though. Most of the jsl codes would either enable me to output the last graph only or with an additional graph (A,B,C,D... +A) when I use the append function.
Would need advice on this.
Thank you,
CD