Interface AnalyticsHoverInteractionExperimental

The pointer / focus moved onto a mark, or off every mark (markKey absent).

interface AnalyticsHoverInteraction {
    adapterId: string;
    artifactDimension?: string;
    artifactId: string;
    artifactKind?:
        | "category"
        | "histogram"
        | "aggregate"
        | "time-series";
    artifactPlanFingerprint?: string;
    artifactSequence?: number;
    artifactSourceId?: string;
    kind: "hover";
    markKey?: string;
}

Hierarchy

  • AnalyticsInteractionBase
    • AnalyticsHoverInteraction

Properties

adapterId: string

Adapter id that produced the interaction, for provenance and loop-breaking.

artifactDimension?: string

Artifact dimension rendered when the interaction was produced.

artifactId: string

Artifact the interaction was performed against.

artifactKind?:
    | "category"
    | "histogram"
    | "aggregate"
    | "time-series"

Artifact kind rendered when the interaction was produced.

artifactPlanFingerprint?: string

Query plan rendered when the interaction was produced.

artifactSequence?: number

Sequence rendered when the interaction was produced.

artifactSourceId?: string

Source rendered when the interaction was produced.

kind
markKey?: string