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
 individual selective curve 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
macxheath Posted - 05/24/2002 : 10:10:55 AM
I usually work with plots including 20-40 sometimes pretty noisy curves. I would like to select a specific trace and hide all others. As it appears to me, the option to 'hide all others' just appears in the right-mouse-menu, if I hit the right curve. Unfortunately, this is sometimes pretty difficult. I wonder if there is a simple way to do this? Or - how can I hide all curves except the 'active curve'
1   L A T E S T    R E P L I E S    (Newest First)
Mike Buess Posted - 05/24/2002 : 1:02:14 PM
This script will hide all but the active curve in the active layer. First select the active curve at the bottom of the Data menu.

%Z=""; lay -c;
loop (ii,1,count)
{
set %[%Z,#ii] -s 0; // hide each curve
};
set %C -s 1; // show the active curve, which is always named by %C

You might also need this script to show all curves...

%Z=""; lay -c;
loop (ii,1,count)
{
set %[%Z,#ii] -s 1; // show each curve
};

Mike Buess
Origin WebRing Member

Edited by - Mike Buess on 05/24/2002 13:03:31

Edited by - Mike Buess on 05/24/2002 13:06:25

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