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!
|