DADiSP Worksheet Functions > S - Z > SETSTRIPCHARTGAP
Sets the gap between traces for a stripchart plot.
SETSTRIPCHARTGAP(win, gap)
win |
- |
Optional. A Window. Defaults to the current Window. |
gap |
- |
A real, the gap as a percentage of the total Window height. Defaults to 10 or 10%. |
W1: gnorm(100, 1)
W2: gnorm(100,1);overlay(W1)
setplottype(W2, 7);setstripchartgap(W2, 20)
W2 contains a stripchart with two series. The gap between each trace is set to 20%.
See STRIPCHART or SETPLOTTYPE to create a stripchart plot.
The stripchart gap of all Windows can be set with the STRIPCHARTGAP parameter. For example,
setconf("stripchartgap", "15")
Sets the default gap to 15% for all new Windows.