Interface InfoPanelRadioGroupParams

Common params for every builder.

interface InfoPanelRadioGroupParams {
    id?: string;
    label: string;
    onChange?: (value: string) => void;
    options: InfoPanelSelectOption[];
    title?: string;
    value?: string;
}

Hierarchy (View Summary)

Properties

id?: string

Stable id for later updates / lookups. Auto-assigned if omitted.

label: string

User-facing label rendered to the left of the control.

onChange?: (value: string) => void
title?: string

Tooltip on hover.

value?: string