Interface ReplayShadeOptions

interface ReplayShadeOptions {
    color?: string;
    id?: string;
    index: null | number;
    lineColor?: string;
    lineVisible?: boolean;
    lineWidth?: number;
    zOrder?: ZOrder;
}

Properties

color?: string

Wash colour over the covered bars. Default a dark, low-alpha neutral.

id?: string
index: null | number

The last bar left uncovered. Everything after it is dimmed. Null draws nothing at all, which is how a host keeps one instance around across entering and leaving the mode.

lineColor?: string

The rule at the cut. Default a muted blue, the colour of a chosen thing.

lineVisible?: boolean

Draw the divider. Default true.

lineWidth?: number
zOrder?: ZOrder