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
Username:
Password:
Save Password
Forgot your Password? | Admin Options

 All Forums
 Origin Forum
 Origin Forum
 show and hide the curves
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic

moondream

Netherlands
22 Posts

Posted - 07/05/2002 :  03:29:15 AM  Show Profile  Edit Topic  Reply with Quote  View user's IP address  Delete Topic
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

Laurie

USA
404 Posts

Posted - 07/05/2002 :  09:52:13 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
Right-click inside the layer and select Show All Data Plots.

OriginLab Technical Support
Go to Top of Page

moondream

Netherlands
22 Posts

Posted - 07/05/2002 :  11:31:09 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
But I don't want to show all, just one of them.

moondream
Go to Top of Page

Jose

Netherlands
93 Posts

Posted - 07/09/2002 :  10:38:12 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
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 Via, Origin WebRing member
Go to Top of Page
  Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000