Kvaser CanKing GUI Extensions SDK - v7.3.0
    Preparing search index...

    Interface RadioGroupControlProps

    Properties of the RadioGroupControl React component.

    interface RadioGroupControlProps {
        id?: string;
        onChange: (value: string) => void;
        value: string;
    }
    Index

    Properties

    Properties

    id?: string

    The component id.

    onChange: (value: string) => void

    Callback that is called when a new radio button has been selected.

    Type Declaration

      • (value: string): void
      • Parameters

        • value: string

          The new value.

        Returns void

    value: string

    Value of the currently selected radio button in this group.