Interface AnalyticsRangeBrushInteractionExperimental

A numeric range was brushed (histogram / aggregate axis).

interface AnalyticsRangeBrushInteraction {
    adapterId: string;
    artifactDimension?: string;
    artifactId: string;
    artifactKind?:
        | "category"
        | "histogram"
        | "aggregate"
        | "time-series";
    artifactPlanFingerprint?: string;
    artifactSequence?: number;
    artifactSourceId?: string;
    kind: "range-brush";
    range: AnalyticsNumericRange;
}

Hierarchy

  • AnalyticsInteractionBase
    • AnalyticsRangeBrushInteraction

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