help(dcc.RadioItems) returns
A RadioItems component.
| RadioItems is a component that encapsulates several radio item inputs.
| The values and labels of the RadioItems is specified in the options
| property and the seleced item is specified with the value
property.
| Each radio item is rendered as an input with a surrounding label.
|
| Keyword arguments:
| - id (string; optional): The ID of this component, used to identify dash components
| in callbacks. The ID needs to be unique across all of the
| components in an app.
| - options (list; optional): An array of options
| - value (string; optional): The currently selected value
| - style (dict; optional): The style of the container (div)
| - className (string; optional): The class of the container (div)
| - inputStyle (dict; optional): The style of the radio element
| - inputClassName (string; optional): The class of the radio element
| - labelStyle (dict; optional): The style of the that wraps the radio input
| and the option’s label
| - labelClassName (string; optional): The class of the that wraps the radio input
| and the option’s label
How can I apply a style to one label, and another style to another label? (eg: one must have flex:1, the second one flex:2)