Hi all,
I would like to know if it is possible to create a PDF from the graphics that are created by the user?
for example here is my code:
graph1 = dt <<
Control Chart Builder(
Size( 600, 500 ),
Show Two Shewhart Charts( 0 ),
Show Control Panel( 0 ),
Sort by Row Order( 1 ),
Show Excluded Region( 0 ),
Variables( Y( :"Y1") ,Subgroup( :batch ), Subgroup(:Date) ),
Get Limits(dt3),
Chart(
Warnings( Test 1( 1 ), Test 2( 1 ), Test 3( 1 ) )
),
Local Data Filter(
Add Filter(
columns( :Version ),
Display( :Version, Size( 160, 75 ), List Display )
),
Mode( Select( 1), Show( 1), Include( 1 ) )
),
Column Switcher(
:Name( "Y1" ),
If( prod_n == 2,
{:Name( "Y1" ), :Name( "Y2" ), :Name( "Y3" )
}
)
)
)
graph1 << journal;
...
When the user creates a graph by clicking on the variable he wants to study from the column switcher, is it possible to save all the graphs created by the users in a PDF file with the journal?
Thank's in advance,
Sébastien