This docs on this page refers to a PREVIOUS VERSION. For the latest stable release, go to https://docs.bokeh.org/

Archived docs for versions <= 1.0.4 have had to be modified from their original published configuration, and may be missing some features (e.g. source listing)

All users are encourage to update to version 1.1 or later, as soon as they are able.

bokeh.models.widgets.panels — Bokeh 1.0.3 documentation

Source code for bokeh.models.widgets.panels

#-----------------------------------------------------------------------------
# Copyright (c) 2012 - 2018, Anaconda, Inc. All rights reserved.
#
# Powered by the Bokeh Development Team.
#
# The full license is in the file LICENSE.txt, distributed with this software.
#-----------------------------------------------------------------------------
''' Various kinds of panel widgets.

'''

#-----------------------------------------------------------------------------
# Boilerplate
#-----------------------------------------------------------------------------
from __future__ import absolute_import, division, print_function, unicode_literals

import logging
log = logging.getLogger(__name__)

#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------

# Standard library imports

# External imports

# Bokeh imports
from ...core.properties import Bool, Instance, Int, List, String

from ..callbacks import Callback
from ..layouts import LayoutDOM

from .widget import Widget

#-----------------------------------------------------------------------------
# Globals and constants
#-----------------------------------------------------------------------------

__all__ = (
    'Panel',
    'Tabs',
)

#-----------------------------------------------------------------------------
# General API
#-----------------------------------------------------------------------------

[docs]class Panel(Widget): ''' A single-widget container with title bar and controls. ''' title = String(default="", help=""" An optional text title of the panel. """) child = Instance(LayoutDOM, help=""" The child widget. If you need more children, use a layout widget, e.g. ``Row`` or ``Column``. """) closable = Bool(False, help=""" Whether this panel is closeable or not. If True, an "x" button will appear. """)
[docs]class Tabs(Widget): ''' A panel widget with navigation tabs. ''' __example__ = "sphinx/source/docs/user_guide/examples/interaction_tab_panes.py" tabs = List(Instance(Panel), help=""" The list of child panel widgets. """) active = Int(0, help=""" The index of the active tab. """) callback = Instance(Callback, help=""" A callback to run in the browser whenever the button is activated. """)
#----------------------------------------------------------------------------- # Dev API #----------------------------------------------------------------------------- #----------------------------------------------------------------------------- # Private API #----------------------------------------------------------------------------- #----------------------------------------------------------------------------- # Code #-----------------------------------------------------------------------------