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
 show and hide the curves

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
moondream Posted - 07/05/2002 : 03:29:15 AM
I draw several curves in one layer, I can hide the data plot(one or several of them) by right click the mouse, can I choose the data plot which I hided before to show up again?

moondream
3   L A T E S T    R E P L I E S    (Newest First)
Jose Posted - 07/09/2002 : 10:38:12 AM
This is an improvement that Origin still has to make, but meanwhile you can create some new menu commands to help you with hiding/showing datasets. Based on this other topic suggestions, you can edit the fullmenu.cnf file in your Origin folder and add the following script at the end:


// Add menu items for hidding/showing datasets

menu -G; // Apply for graphs only
menu ?Da; // Under the Data menu

menu (Hide current) {
# Make %c invisible.
set %C -s 0;
}

menu (Show current) {
# Make %c visible.
set %C -s 1;
}

menu (Hide others) {
# Make visible only %c, hide others.
%Z=""; lay -c;
loop (ii,1,count)
{
set %[%Z,#ii] -s 0; // hide each curve
};
set %C -s 1; // show the active curve
}

menu (Show all datasets) {
# Make all the datasets visible
%Z=""; lay -c;
loop (ii,1,count)
{
set %[%Z,#ii] -s 1; // show each curve
};
}


Save the modified file and restart Origin. This will add four items under the Data menu in the menu bar that you'll find very useful. First select your dataset in that Data menu to activate it, then click on the desired option (commands will run on the currently selected dataset).



Jose Viņa, Origin WebRing member
moondream Posted - 07/05/2002 : 11:31:09 AM
But I don't want to show all, just one of them.

moondream
Laurie Posted - 07/05/2002 : 09:52:13 AM
Right-click inside the layer and select Show All Data Plots.

OriginLab Technical Support

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