@ -428,7 +428,7 @@ class Widget(LoggingConfigurable):
classDOMWidget(Widget):
visible=Bool(True, help="Whether the widget is visible.",sync=True)
visible=Bool(True,allow_none=True,help="Whether the widget is visible. False collapses the empty space, while None preserves the empty space.",sync=True)
"Sometimes it is necessary to **hide or show widgets** in place, **without having to re-display** the widget.\n",
"The `visibility` property of widgets can be used to hide or show **widgets that have already been displayed** (as seen below)."
"The `visible` property of widgets can be used to hide or show **widgets that have already been displayed** (as seen below). The `visible` property can be:\n",
"* `True` - the widget is displayed\n",
"* `False` - the widget is hidden, and the empty space where the widget would be is collapsed\n",
"* `None` - the widget is hidden, and the empty space where the widget would be is shown"