Question: how to make checkbox_group name to appear either ‘inline’ or on ‘top’ ?
for example: to make ‘My Checkbox’ string to appear on top or inline with …
checkbox_group = pn.widgets.CheckBoxGroup(
name=‘My Checkbox’, value=[‘Apple’, ‘Pear’], options=[‘Apple’, ‘Banana’, ‘Pear’, ‘Strawberry’],
inline=True)
checkbox_group
Regards,
Wilson