The slice of the time scale replay saves and restores. Declared structurally rather than as TimeScale so nothing here depends on the scale's shape beyond the two numbers that are the viewport.

interface ReplayViewport {
    barSpacing: number;
    rightOffset: number;
    setBarSpacing(value: number): void;
    setRightOffset(value: number): void;
}

Properties

barSpacing: number
rightOffset: number

Methods