Skip to main content

Radio Button

A Radio Button is a user interface control element that allows users to select one option from a set of options.

Playground

Live Editor
<ProvenanceRadiobutton 
  id="jsx-provenance-radiobutton"
  name="jsx-provenance-radiobutton"
  data={[
    { label: 'New York', value: 'New York' },
    { label: 'Rome', value: 'Rome' },
    { label: 'London', value: 'London' },
    { label: 'Istanbul', value: 'Istanbul' },
    { label: 'Paris', value: 'Paris' }
  ]}
  selected={'New York'}
  freeze={false}
  visualize={true}
  provenanceChange={console.log} // hardcoded
  selectedChange={console.log} // hardcoded
/>
Result
Loading...
info

The above example uses React JSX and Web Components. See corresponding (static) examples for Angular and Web Components below.

import { Component } from '@angular/core';

@Component({
selector: 'radiobutton-root',
templateUrl: './radiobutton.component.html',
styleUrls: ['./radiobutton.component.css']
})
export class RadiobuttonComponent {
data = [
{ label: 'New York', value: 'New York' },
{ label: 'Rome', value: 'Rome' },
{ label: 'London', value: 'London' },
{ label: 'Istanbul', value: 'Istanbul' },
{ label: 'Paris', value: 'Paris' }
];
selected = 'New York';
freeze = false;
visualize = true;

provenanceChange(event) {
console.log(event.detail);
}

selectedChange(event) {
console.log(event.detail);
// Mandatory to update the selected property manually, or use two-way binding
selected = event.detail;
}
}

API

info

All widgets extend a third-party library component. See the extends property below for more information about the base component's API.

Extendsp-radiobutton
Angular Selectorprovenance-radiobutton
Web Component Tagweb-provenance-radiobutton

Properties

NameTypeDefaultRequiredDescription
idstring""YesUnique identifier for the element. Used by ProvenanceWidgets for internal state management and visualizations.
dataany[]undefinedYesAn array of objects to display as radiobuttons. Each object must have a label and a value property. Alternatively, you can map your properties using label="your_label_property" and value="your_value_property".
selectedstringNoThe selected value. It must be one of the values in the data array. Two-way binding is supported.
freezebooleanfalseNoWhether to freeze the provenance. If true, the widget will not record any provenance, and interactions will not create/update any visualizations. NOTE: The widget does not update when the property is changed.
visualizebooleantrueNoWhether to visualize the provenance. NOTE: The widget does not update when the property is changed.
provenanceProvenanceundefinedNoThe provenance of interactions recorded by the widget. Use this property to persist, restore, modify, or reconstruct the provenance of interactions for the widget. To override the provenance, revalidate must be set to true. Two-way binding is supported.

Events

NameEventEmitter<T>Description
selectedChangestringEmits the updated selected values when the radiobutton selection changes.
provenanceChange<Provenance>Emits the provenance when the radiobutton selection changes.