Hi Akki,
I hope the following snippet helps you to code:////////////////////////////////////////////
//Run the following lines after fitting on the graph
range rr = [%H]1!2; //2nd plot in current graph window
set rr -w 2000; //set line thickness
tname$=""; //table name
doc -e G {
ch5$=Left(%B,5)$;
if(ch5$=="Table") { //if table is found
tname$=%B;
Break;
}
}
%(tname$).width=2500; //table width
%(tname$).height=1500; //table height
%(tname$).top=580; //table top position in pixel
%(tname$).left=1150; //table left position in pixel
////////////////////////////////////////////
--Hideo Fujii
OriginLab