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 for Programming
 LabTalk Forum
 change the width of the curve

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
joss31 Posted - 05/28/2014 : 05:00:45 AM
Hello everybody,

Today I need some help because I want to change the width of my curves, I found the command "set [...] -w width" but I don't know how I can use it.

There is an exemple in the labtalk manual but it change nothing (the exemple is "set [your name] -w 1000;").

So thank you in advance.

And I use the labtalk from Origin version 6.1.
2   L A T E S T    R E P L I E S    (Newest First)
joss31 Posted - 06/03/2014 : 05:04:15 AM
Hello, Thank you for your reply I try your solution but I don't know why I don't succeed to make it work. When I put those commands

set %C -w 500;

or

range r = 1!2;
set r -w 1000;

And it didn't work for the moment.
Mulvenna Posted - 05/28/2014 : 10:22:13 AM
If you only have one plot in the active layer you can use:

set %C -w 500; // Set the active plot line width to 1

If you have more than one plot you can set the range of the plot you want to change and then change that plot:

range r = 1!2; // Set range r to the 2nd plot of the 1st layer
set r -w 1000; // Set the line width of this plot to 2

(When setting the widths: 50 == 0.1pt)

Hope this helps!

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