holoviz / panel

Panel: The powerful data exploration & web app framework for Python
https://panel.holoviz.org
BSD 3-Clause "New" or "Revised" License
4.79k stars 519 forks source link

Name of `pn.widgets.RadioBoxGroup` not visible #6202

Open ambrustorok opened 10 months ago

ambrustorok commented 10 months ago

The name of some widgets is not displayed, causing inconsistencies.

import panel as pn
pn.extension()
radio_group = pn.widgets.RadioBoxGroup(name='RadioBoxGroup', options=['Biology', 'Chemistry', 'Physics'], inline=True)
radio_group

image

import panel as pn
pn.extension()
text_area_input = pn.widgets.input.TextAreaInput(name='Text Area Input', placeholder='Enter a string here...')
text_area_input

image

G-Guillard commented 10 months ago

This is a duplicate of #1313.