Interface AnalyticsTemporalBrushInteractionExperimental

A temporal window was brushed (time-series axis).

interface AnalyticsTemporalBrushInteraction {
    adapterId: string;
    artifactDimension?: string;
    artifactId: string;
    artifactKind?:
        | "category"
        | "histogram"
        | "aggregate"
        | "time-series";
    artifactPlanFingerprint?: string;
    artifactSequence?: number;
    artifactSourceId?: string;
    kind: "temporal-brush";
    window: AnalyticsTemporalWindow;
}

Hierarchy

  • AnalyticsInteractionBase
    • AnalyticsTemporalBrushInteraction

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