T O P I C R E V I E W |
NoMe02551 |
Posted - 06/03/2011 : 02:59:46 AM Origin Ver. and Service Release (Select Help-->About Origin): 8.5.0 SR1 b161 Operating System: XP SP3
in labtalk script: 1. newpanel 2. win -t plot
? I try find difference but unsuccesfully
and I need draw axis TopX and RightY in the SAME layer where is graph. I find:
layadd type:=TopX (or RightY)
but it is in new graph layer :(
thank Norbert |
4 L A T E S T R E P L I E S (Newest First) |
NoMe02551 |
Posted - 06/09/2011 : 02:40:53 AM thanks greg I find it :) |
greg |
Posted - 06/07/2011 : 3:01:58 PM The Scripting Guide is a good overview, but for complete details, you should use the Programming Help file. In the Help menu, choose Programming : LabTalk.
Look in Language Reference\Object Reference\Alphabetic Listing of Objects\Layer.Axis |
NoMe02551 |
Posted - 06/06/2011 : 02:00:07 AM Hi Greg, thank you for the explanation. I have book LabTalk scripting guide for Origin 8.5 and I try find in help in Origin but I dont found more about layer. Please where can I find it?
Thanks Norbert |
greg |
Posted - 06/03/2011 : 11:46:39 AM "win -t plot" is a LabTalk Command while "newpanel" is an X-Function. The "window -t plot" command has very few options and has traditionally been used when you want to load a specific template file, while the X-Function has many options and is much more powerful. Type "newpanel -h" of "help newpanel" in the Script Window to see the options.
Here is how to add top x and right y to the current layer: layer.x.showaxes=3; layer.y.showaxes=3; Consult the LabTalk Object documentation for LAYER.
|