Skip to content

AnnotationEventFieldMapping🔗

Annotation event field mapping. Defines how to map a data frame field to an annotation event field.

Definition🔗

export interface AnnotationEventFieldMapping {
    // Source type for the field value.
    source?: dashboard.AnnotationEventFieldSource;
    // Constant value to use when source is "text".
    value?: string;
    // Regular expression to apply to the field value.
    regex?: string;
}

See also🔗