Interface CaptionHighlight

The caption highlighting with the highlighted ranges and an optional background color.

interface CaptionHighlight {
    backgroundColor?: string;
    color?: string;
    ranges: core.Range[];
}

Properties

backgroundColor?: string

The optional background color of the text data that is being highlighted.

color?: string

The optional color of the text data that is being highlighted. Falls back to the default mark color values defined under a widget segment class.

ranges: core.Range[]

The ranges to highlight in the caption.