Hi all,
I have a simple question about plotting two or more figures in the same interface with different panels, such as two panels: up and down, or left and right.
Thanks so much in advance.
I suspect that you are wanting either to create a stacked/tiled graph of curves or to lay out plots in a stacked/tiled arrangement on a page. For the former, see page II-292 of the manual. For the latter, see Chapter II-16 of the manual.
Perhaps you could then otherwise provide further details of your question so we can help.
--
J. J. Weimer
Chemistry / Chemical & Materials Engineering, UAHuntsville
[quote=urion]I have a simple question about plotting two or more figures in the same interface with different panels, such as two panels: up and down, or left and right.
[/quote]
You can put multiple plots on one graph using free axes. For example:
Function DemoSideBySidePlots()Make/O jack=sin(x/8), joe=cos(x/8)// Display jack versus left and bottom axesDisplay/W=(35,44,430,252) jack
// Limit length of bottom axisModifyGraph axisEnab(bottom)={0,0.4}// Other tweaks for left and bottomModifyGraph standoff(left)=0,standoff(bottom)=0ModifyGraph lblPos(left)=60,lblPos(bottom)=39// Display joe versus left2 and bottom2 free axesAppendToGraph/L=left2/B=bottom2 joe
// Limit length of bottom2 axisModifyGraph axisEnab(bottom2)={0.6,1}// Other tweaks for left2 and bottom2ModifyGraph freePos(left2)={0.6,kwFraction}ModifyGraph freePos(bottom2)={0,kwFraction}End
To learn about this, execute:
DisplayHelpTopic"Types of Axes"DisplayHelpTopic"Creating Graphs with Multiple Axes"
You can also embed graph subwindows in other windows:
DisplayHelpTopic"Embedding and Subwindows"
For presentation purposes I would tend to use free axes. For user-interfaces I would tend to use subwindows.
Perhaps you could then otherwise provide further details of your question so we can help.
--
J. J. Weimer
Chemistry / Chemical & Materials Engineering, UAHuntsville
May 26, 2011 at 04:26 am - Permalink
[/quote]
You can put multiple plots on one graph using free axes. For example:
To learn about this, execute:
You can also embed graph subwindows in other windows:
For presentation purposes I would tend to use free axes. For user-interfaces I would tend to use subwindows.
May 26, 2011 at 10:16 am - Permalink