Interface AnalyticsClearInteractionExperimental

The user cleared this presentation's contribution to shared state.

interface AnalyticsClearInteraction {
    adapterId: string;
    artifactDimension?: string;
    artifactId: string;
    artifactKind?:
        | "category"
        | "histogram"
        | "aggregate"
        | "time-series";
    artifactPlanFingerprint?: string;
    artifactSequence?: number;
    artifactSourceId?: string;
    channel?:
        | "range"
        | "temporal"
        | "hover"
        | "marks";
    kind: "clear";
}

Hierarchy

  • AnalyticsInteractionBase
    • AnalyticsClearInteraction

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.

channel?:
    | "range"
    | "temporal"
    | "hover"
    | "marks"

Limit the clear to one channel. Omit to clear everything this view owns.

kind