T O P I C R E V I E W |
Heindl |
Posted - 05/14/2007 : 1:28:45 PM Origin Version (Select Help-->About Origin): 7.5 Operating System: XP
I have a large number of graphs with different scales. I need to set the scale for all of them (both horizontal and vertical). Is there a way to do this for all graphs at ones, instead of doing it for each graph separatelly? Thanks! |
3 L A T E S T R E P L I E S (Newest First) |
Mike Buess |
Posted - 05/14/2007 : 4:25:50 PM Use layer.x.inc to set the X tick increment. (layer.y.inc for Y tick increment.) Look for Layer.axis object in the index of the programming guide for other axis properties.
Mike Buess Origin WebRing Member |
Heindl |
Posted - 05/14/2007 : 4:05:08 PM Thanks, it worked! Can I also set the increment and ticks of the scales? |
Mike Buess |
Posted - 05/14/2007 : 3:15:20 PM This establishes the same X scales (xmin, xmax) and Y scales (ymin, ymax) in all graph layers in the project.
doc -e LP { x1=xmin; x2=xmax; y1=ymin; y2=ymax; };
Mike Buess Origin WebRing Member |