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.sphinxext.sample — Bokeh 0.12.5 documentation

Source code for bokeh.sphinxext.sample

from __future__ import absolute_import

from bokeh.model import Model
from bokeh.core.enums import enumeration
from bokeh.core.properties import Auto, Either, Enum, Float, Int, List, Tuple

[docs]class Foo(Model): """ This is a Foo model. """ index = Either(Auto, Enum('abc', 'def', 'xzy'), help="doc for index") value = Tuple(Float, Float, help="doc for value")
class Bar(Model): """ This is a Bar model. """ thing = List(Int, help="doc for thing") #: This is an enumeration baz = enumeration("a", "b", "c")