The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
 All Forums
 Origin Forum
 Origin Forum
 Graph refreshing/ replotting problem

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
viswanthank Posted - 01/11/2006 : 5:07:39 PM
Hi guys,
I am still figuring out if I can use Origin for what I am intending to do before I get too far. I need to stack a set of 8-12 graphs of very large volume of data ( may be 200,000 points)and still move through the graph quickly picking and lebeling x and Y values with the cursor.

The problem is, (I think) the program is trying to plot the graph everytime the screen has to be refreshed. This is annoyingly time consuming and is kind of killing the advantages in Origin.

So, Is there a way around it....... or can this be changed with suitable codes?

Thanks,
Viswa
3   L A T E S T    R E P L I E S    (Newest First)
greg Posted - 01/12/2006 : 1:31:04 PM
I don't think you have explained your problem very well. Certainly large datasets will take longer to redraw on screen than small datasets, but you must be doing something that is causing the redraw as cp explained.

Using a script such as this :
// BEGIN SCRIPT
dotool 3;
def pointproc {
ii=1;
for(done=0;done==0; ) {
if(0/0==Text$(ii).x) done=1;
ii++;
}
ii--;
%A = ($(X),$(Y));
label -s -sa -a X Y -n Text$(ii) "($(X),$(Y))";
text$(ii).rotate=90;
text$(ii).fsize=10;
}
// END SCRIPT
to automate your labelling does not trigger a redraw.

viswanthank Posted - 01/12/2006 : 09:05:43 AM
I am sending proj1.opj to tech@originlab.com. Please feel free to play around with the stack plot and see how best we can plot the graphs to speed the process.

Your help will be greatly appreciated.

Thanks
Viswanathan K
cpyang Posted - 01/11/2006 : 6:27:39 PM
Are you running any script?
Are the axes scales changed?
Are these line graphs? In general, Origin does not recreate the curves but keep just metafile caches to refresh, so unless something is changed in the graph, you should not see a slow refresh.

CP



The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000