DADiSP Worksheet Functions > S - Z > SETSTRIPCHARTCOLORMODE
Sets the color inheritance for the traces of a stripchart plot.
SETSTRIPCHARTCOLORMODE(win, mode)
win |
- |
Optional. A Window. Defaults to the current Window. |
||||||
mode |
- |
An integer, the color inheritance mode:
|
W1: gnorm(100, 1)
W2: gnorm(100,1);overlay(W1,lred)
setplottype(W2, 7);setstripchartcolormode(W2, 0)
W2 contains a stripchart with two series. The color of each series is inherited from the original series. In this case, the color of the second series is set to light red.
See STRIPCHART or SETPLOTTYPE to create a stripchart plot.
The stripchart color inheritance mode of all Windows can be set with the STRIPCHARTCOLORMODE parameter. For example,
setconf("stripchartcolormode", "1")
Sets the default color mode to separate colors.