Я хотел бы изменить цвет 'This label' в селекторе binding_radio: возможно ли это?
Я ничего не нашел об этом ...
Любая помощь буду очень признателен!
df = pd.DataFrame({'x':[0,0],'y':[10,20],'color':['red','blue']})
groups = df['y'].tolist()
radio_groups = alt.binding_radio(
options = groups,
name = 'This label'
)
select_group = alt.selection(
type = 'single',
fields = ['y'],
bind = radio_groups,
empty ='none',
init = {'y': 10}
)
alt.Chart(
df
).mark_bar(
).encode(
x = 'x:O',
y='y:O',
color = 'y:O'
).add_selection(
select_group
).transform_filter(
select_group
)