interface BarcodeItemOverlayViewConfig {
    polygonColor?: string;
    strokeColor?: string;
    text: string;
    textColor?: string;
    textContainerColor?: string;
}

Properties

polygonColor?: string

The color of the polygon in the selection overlay. If not set, the polygonColor from SelectionOverlayConfig is used.

strokeColor?: string

The color of the polygon border. If not set, the strokeColor from SelectionOverlayConfig is used.

text: string

Custom text in the selection overlay. If not set, the textFormat property from the SelectionOverlayConfig is taken into account.

textColor?: string

The color of the text in the selection overlay. If not set, the textColor from SelectionOverlayConfig is used.

textContainerColor?: string

The color of the texts background in the selection overlay. If not set, the textContainerColor from SelectionOverlayConfig is used.