Interface AnalyticsLinkedStateExperimental

The shared linked state a presentation renders, derived from the exploration context. Hover is included so peer presentations can cross-highlight; it is ephemeral and never persisted into a snapshot.

interface AnalyticsLinkedState {
    hoveredMarkKey?: string;
    range?: AnalyticsNumericRange;
    selectedMarkKeys: readonly string[];
    temporalWindow?: AnalyticsTemporalWindow;
}

Properties

hoveredMarkKey?: string
selectedMarkKeys: readonly string[]
temporalWindow?: AnalyticsTemporalWindow