Hi,
You can use the Gadget "curve translate" to translate the curves vertically or horizontally one by one.
http://www.originlab.com/doc/X-Function/ref/curve-translate
Or you can write some script to translate all curves in current graph window.
doc -e D
{
%C += 5; //Translate all curves vertically by step=5
}
To translate all curves horizontally(I suppose there is only one X dataset for all curves), you can try the script below:
range rr=[Book1]Sheet1!A;
rr+=5;
Thanks,
Shirley
Originlab Technical Service Team