css#

Various abstractions over the CSS object model.

class GlobalImportedStyleSheet(*args: Any, id: ID | None = None, **kwargs: Any)[source]#

Bases: ImportedStyleSheet

一个导入的样式表,它会被附加到 <head> 元素。

Note

一个样式表只会被附加一次,无论它在其他模型中被使用多少次。

JSON 原型
{
  "id": "p59057", 
  "js_event_callbacks": {
    "type": "map"
  }, 
  "js_property_callbacks": {
    "type": "map"
  }, 
  "name": null, 
  "subscribed_events": {
    "type": "set"
  }, 
  "syncable": true, 
  "tags": [], 
  "url": {
    "name": "unset", 
    "type": "symbol"
  }
}
name = None#
类型:

Nullable(String)

此模型的一个任意的、用户提供的名称。

当查询文档以检索特定的 Bokeh 模型时,此名称可能很有用。

>>> plot.scatter([1,2,3], [4,5,6], name="temp")
>>> plot.select(name="temp")
[GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]

Note

对于提供的任何名称,不强制执行唯一性保证或其他条件,Bokeh 也不会出于任何原因直接使用该名称。

syncable = True#
类型:

布尔值

指示此模型在 Web 浏览器中更新时是否应同步回 Bokeh 服务器。当处理频繁更新的对象而我们不需要其更新值时,设置为 False 可能有助于减少网络流量。

Note

将此属性设置为 False 将阻止此对象上的任何 on_change() 回调被触发。但是,任何 JS 端的回调仍然有效。

tags = []#
类型:

列表

一个可选的、用户提供的任意值列表,用于附加到此模型。

当查询文档以检索特定的 Bokeh 模型时,此数据可能很有用

>>> r = plot.scatter([1,2,3], [4,5,6])
>>> r.tags = ["foo", 10]
>>> plot.select(tags=['foo', 10])
[GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]

或者仅仅是将任何必要的元数据附加到模型的一种便捷方式,可以通过 CustomJS 回调等方式访问。

Note

对于提供的任何标签,不强制执行唯一性保证或其他条件,Bokeh 也不会出于任何原因直接使用这些标签。

url = Undefined#
类型:

Required(String)

外部样式表的位置。

apply_theme(property_values: dict[str, Any]) None#

应用一组主题值,这些值将代替默认值使用,但不会覆盖应用程序设置的值。

传入的字典可以按原样保留并与其他实例共享以节省内存(因此调用者和 HasProps 实例都不应修改它)。

参数:

property_values (dict) – 用于代替默认值的主题值

返回值:

None

classmethod clear_extensions() None#

清除任何当前定义的自定义扩展。

序列化调用将导致任何当前定义的自定义扩展包含在生成的文档中,无论是否被使用。此方法可用于清除所有现有的自定义扩展定义。

clone(**overrides: Any) Self#

复制一个 HasProps 对象。

这将创建原始模型的浅克隆,即任何可变容器或子模型都不会被复制。允许在克隆时覆盖特定的属性。

classmethod dataspecs() dict[str, DataSpec]#

收集此类上所有 DataSpec 属性的名称。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

返回值:

DataSpec 属性的名称

返回类型:

set[str]

classmethod descriptors() list[PropertyDescriptor[Any]]#

属性描述符列表,按定义顺序排列。

destroy() None#

清理对文档和属性的引用

equals(other: HasProps) bool#

模型的结构相等性。

参数:

other (HasProps) – 要比较的另一个实例

返回值:

如果属性在结构上相等,则为 True,否则为 False

使用 JavaScript 链接两个 Bokeh 模型属性。

这是一个便捷方法,简化了添加 CustomJS 回调以在一个 Bokeh 模型属性的值更改时更新另一个属性。

参数:
  • attr (str) – 此模型上 Bokeh 属性的名称

  • other (Model) – 要链接到 self.attr 的 Bokeh 模型

  • other_attr (str) – 要链接在一起的 other 上的属性

  • attr_selector (int | str) – 在可下标的 attr 中链接项目的索引

在版本 1.1 中添加

引发:

ValueError

示例

使用 js_link 的此代码

select.js_link('value', plot, 'sizing_mode')

等效于以下代码

from bokeh.models import CustomJS
select.js_on_change('value',
    CustomJS(args=dict(other=plot),
             code="other.sizing_mode = this.value"
    )
)

此外,要使用 attr_selector 将范围滑块的左侧附加到绘图的 x_range

range_slider.js_link('value', plot.x_range, 'start', attr_selector=0)

这等效于

from bokeh.models import CustomJS
range_slider.js_on_change('value',
    CustomJS(args=dict(other=plot.x_range),
             code="other.start = this.value[0]"
    )
)
js_on_change(event: str, *callbacks: JSChangeCallback) None#

CustomJS 回调附加到任意 BokehJS 模型事件。

在 BokehJS 端,模型属性的更改事件的形式为 "change:property_name"。为了方便起见,如果传递给此方法的事件名称也是模型上属性的名称,则它将自动以 "change:" 为前缀

# these two are equivalent
source.js_on_change('data', callback)
source.js_on_change('change:data', callback)

但是,除了属性更改事件之外,还有其他类型的事件可能需要响应。例如,要在数据流式传输到 ColumnDataSource 时运行回调,请使用源上的 "stream" 事件

source.js_on_change('streaming', callback)
classmethod lookup(name: str, *, raises: bool = True) PropertyDescriptor[Any] | None#

给定属性名称,查找类上 Bokeh 属性的 PropertyDescriptor

参数:
  • name (str) – 要搜索的属性的名称

  • raises (bool) – 如果丢失,是引发异常还是返回 None

返回值:

名为 name 的属性的描述符

返回类型:

PropertyDescriptor

on_change(attr: str, *callbacks: PropertyCallback) None#

在此对象上添加回调,以便在 attr 更改时触发。

参数:
  • attr (str) – 此对象上的属性名称

  • *callbacks (callable) – 要注册的回调函数

返回值:

None

示例

widget.on_change('value', callback1, callback2, ..., callback_n)
on_event(event: str | type[Event], *callbacks: Callable[[Event], None] | Callable[[], None]) None#

当指定事件在此模型上发生时运行回调

并非所有模型都支持所有事件。有关哪些模型能够触发事件的更多信息,请参阅 bokeh.events 中的特定事件。

classmethod parameters() list[Parameter]#

生成适用于从字形派生的函数的 Python Parameter 值。

返回值:

list(Parameter)

classmethod properties(*, _with_props: bool = False) set[str] | dict[str, Property[Any]]#

收集此类上属性的名称。

警告

在未来的 Bokeh 版本中,此方法将返回一个字典,将属性名称映射到属性对象。为了使当前对此方法的使用具有前瞻性,请将返回值包装在 list 中。

返回值:

属性名称

classmethod properties_with_refs() dict[str, Property[Any]]#

收集此类上所有也具有引用的属性的名称。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

返回值:

具有引用的属性的名称

返回类型:

set[str]

properties_with_values(*, include_defaults: bool = True, include_undefined: bool = False) dict[str, Any]#

收集一个字典,将属性名称映射到它们的值。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

不可序列化的属性将被跳过,并且属性值采用“序列化”格式,这可能与您通常从属性中读取的值略有不同;此方法的目的是返回无损地重构对象实例所需的信息。

参数:

include_defaults (bool, 可选) – 是否包括自对象创建以来尚未显式设置的属性。(默认值:True)

返回值:

从属性名称到其值的映射

返回类型:

字典

query_properties_with_values(query: Callable[[PropertyDescriptor[Any]], bool], *, include_defaults: bool = True, include_undefined: bool = False) dict[str, Any]#

使用谓词查询 HasProps 实例的属性值。

参数:
  • query (callable) – 一个可调用对象,它接受属性描述符并返回 True 或 False

  • include_defaults (bool, 可选) – 是否包括用户尚未显式设置的属性(默认值:True)

返回值:

匹配属性的属性名称和值的映射

返回类型:

字典

references() set[Model]#

返回此对象引用的所有 Models

remove_on_change(attr: str, *callbacks: Callable[[str, Any, Any], None]) None#

从此对象中移除一个回调

select(selector: SelectorType) Iterable[Model]#

查询此对象及其所有引用,以查找与给定选择器匹配的对象。

参数:

selector (JSON-like)

返回值:

seq[Model]

select_one(selector: SelectorType) Model | None#

查询此对象及其所有引用,以查找与给定选择器匹配的对象。如果找到多个对象,则引发错误。返回单个匹配对象,如果未找到任何对象,则返回 None :param selector: :type selector: JSON-like

返回值:

Model

set_from_json(name: str, value: Any, *, setter: Setter | None = None) None#

从 JSON 设置此对象上的属性值。

参数:
  • name (str) – 要设置的属性的名称

  • value (JSON-value) – 要设置给属性的值

  • setter (ClientSessionServerSessionNone, 可选) –

    这用于防止对 Bokeh 应用程序的“回旋镖”更新。

    在 Bokeh 服务器应用程序的上下文中,传入的属性更新将使用正在执行更新的会话进行注释。此值会通过更新触发的任何后续更改通知传播。会话可以将事件 setter 与自身进行比较,并阻止任何源自自身的更新。

返回值:

None

set_select(selector: type[Model] | SelectorType, updates: dict[str, Any]) None#

使用指定的属性/值更新来更新与给定选择器匹配的对象。

参数:
  • selector (JSON-like)

  • updates (dict)

返回值:

None

themed_values() dict[str, Any] | None#

获取任何主题提供的覆盖。

结果以从属性名称到值的字典形式返回,如果主题未覆盖此实例的任何值,则返回 None

返回值:

dict 或 None

to_serializable(serializer: Serializer) ObjectRefRep#

将此对象转换为可序列化的表示形式。

trigger(attr: str, old: Any, new: Any, hint: DocumentPatchedEvent | None = None, setter: Setter | None = None) None#
unapply_theme() None#

移除任何主题值并恢复默认值。

返回值:

None

update(**kwargs: Any) None#

从给定的关键字参数更新对象的属性。

返回值:

None

示例

以下是等效的

from bokeh.models import Range1d

r = Range1d

# set properties individually:
r.start = 10
r.end = 20

# update properties together:
r.update(start=10, end=20)
property document: Document | None#

此模型附加到的 Document (可以是 None

class GlobalInlineStyleSheet(*args: Any, id: ID | None = None, **kwargs: Any)[source]#

基类:InlineStyleSheet

一个附加到 <head> 元素的内联样式表。

Note

一个样式表只会被附加一次,无论它在其他模型中被使用多少次。

JSON 原型
{
  "css": {
    "name": "unset", 
    "type": "symbol"
  }, 
  "id": "p59062", 
  "js_event_callbacks": {
    "type": "map"
  }, 
  "js_property_callbacks": {
    "type": "map"
  }, 
  "name": null, 
  "subscribed_events": {
    "type": "set"
  }, 
  "syncable": true, 
  "tags": []
}
css = Undefined#
类型:

Required(String)

此样式表的内容。

name = None#
类型:

Nullable(String)

此模型的一个任意的、用户提供的名称。

当查询文档以检索特定的 Bokeh 模型时,此名称可能很有用。

>>> plot.scatter([1,2,3], [4,5,6], name="temp")
>>> plot.select(name="temp")
[GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]

Note

对于提供的任何名称,不强制执行唯一性保证或其他条件,Bokeh 也不会出于任何原因直接使用该名称。

syncable = True#
类型:

布尔值

指示此模型在 Web 浏览器中更新时是否应同步回 Bokeh 服务器。当处理频繁更新的对象而我们不需要其更新值时,设置为 False 可能有助于减少网络流量。

Note

将此属性设置为 False 将阻止此对象上的任何 on_change() 回调被触发。但是,任何 JS 端的回调仍然有效。

tags = []#
类型:

列表

一个可选的、用户提供的任意值列表,用于附加到此模型。

当查询文档以检索特定的 Bokeh 模型时,此数据可能很有用

>>> r = plot.scatter([1,2,3], [4,5,6])
>>> r.tags = ["foo", 10]
>>> plot.select(tags=['foo', 10])
[GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]

或者仅仅是将任何必要的元数据附加到模型的一种便捷方式,可以通过 CustomJS 回调等方式访问。

Note

对于提供的任何标签,不强制执行唯一性保证或其他条件,Bokeh 也不会出于任何原因直接使用这些标签。

apply_theme(property_values: dict[str, Any]) None#

应用一组主题值,这些值将代替默认值使用,但不会覆盖应用程序设置的值。

传入的字典可以按原样保留并与其他实例共享以节省内存(因此调用者和 HasProps 实例都不应修改它)。

参数:

property_values (dict) – 用于代替默认值的主题值

返回值:

None

classmethod clear_extensions() None#

清除任何当前定义的自定义扩展。

序列化调用将导致任何当前定义的自定义扩展包含在生成的文档中,无论是否被使用。此方法可用于清除所有现有的自定义扩展定义。

clone(**overrides: Any) Self#

复制一个 HasProps 对象。

这将创建原始模型的浅克隆,即任何可变容器或子模型都不会被复制。允许在克隆时覆盖特定的属性。

classmethod dataspecs() dict[str, DataSpec]#

收集此类上所有 DataSpec 属性的名称。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

返回值:

DataSpec 属性的名称

返回类型:

set[str]

classmethod descriptors() list[PropertyDescriptor[Any]]#

属性描述符列表,按定义顺序排列。

destroy() None#

清理对文档和属性的引用

equals(other: HasProps) bool#

模型的结构相等性。

参数:

other (HasProps) – 要比较的另一个实例

返回值:

如果属性在结构上相等,则为 True,否则为 False

使用 JavaScript 链接两个 Bokeh 模型属性。

这是一个便捷方法,简化了添加 CustomJS 回调以在一个 Bokeh 模型属性的值更改时更新另一个属性。

参数:
  • attr (str) – 此模型上 Bokeh 属性的名称

  • other (Model) – 要链接到 self.attr 的 Bokeh 模型

  • other_attr (str) – 要链接在一起的 other 上的属性

  • attr_selector (int | str) – 在可下标的 attr 中链接项目的索引

在版本 1.1 中添加

引发:

ValueError

示例

使用 js_link 的此代码

select.js_link('value', plot, 'sizing_mode')

等效于以下代码

from bokeh.models import CustomJS
select.js_on_change('value',
    CustomJS(args=dict(other=plot),
             code="other.sizing_mode = this.value"
    )
)

此外,要使用 attr_selector 将范围滑块的左侧附加到绘图的 x_range

range_slider.js_link('value', plot.x_range, 'start', attr_selector=0)

这等效于

from bokeh.models import CustomJS
range_slider.js_on_change('value',
    CustomJS(args=dict(other=plot.x_range),
             code="other.start = this.value[0]"
    )
)
js_on_change(event: str, *callbacks: JSChangeCallback) None#

CustomJS 回调附加到任意 BokehJS 模型事件。

在 BokehJS 端,模型属性的更改事件的形式为 "change:property_name"。为了方便起见,如果传递给此方法的事件名称也是模型上属性的名称,则它将自动以 "change:" 为前缀

# these two are equivalent
source.js_on_change('data', callback)
source.js_on_change('change:data', callback)

但是,除了属性更改事件之外,还有其他类型的事件可能需要响应。例如,要在数据流式传输到 ColumnDataSource 时运行回调,请使用源上的 "stream" 事件

source.js_on_change('streaming', callback)
classmethod lookup(name: str, *, raises: bool = True) PropertyDescriptor[Any] | None#

给定属性名称,查找类上 Bokeh 属性的 PropertyDescriptor

参数:
  • name (str) – 要搜索的属性的名称

  • raises (bool) – 如果丢失,是引发异常还是返回 None

返回值:

名为 name 的属性的描述符

返回类型:

PropertyDescriptor

on_change(attr: str, *callbacks: PropertyCallback) None#

在此对象上添加回调,以便在 attr 更改时触发。

参数:
  • attr (str) – 此对象上的属性名称

  • *callbacks (callable) – 要注册的回调函数

返回值:

None

示例

widget.on_change('value', callback1, callback2, ..., callback_n)
on_event(event: str | type[Event], *callbacks: Callable[[Event], None] | Callable[[], None]) None#

当指定事件在此模型上发生时运行回调

并非所有模型都支持所有事件。有关哪些模型能够触发事件的更多信息,请参阅 bokeh.events 中的特定事件。

classmethod parameters() list[Parameter]#

生成适用于从字形派生的函数的 Python Parameter 值。

返回值:

list(Parameter)

classmethod properties(*, _with_props: bool = False) set[str] | dict[str, Property[Any]] #

收集此类上属性的名称。

警告

在未来的 Bokeh 版本中,此方法将返回一个字典,将属性名称映射到属性对象。为了使当前对此方法的使用具有前瞻性,请将返回值包装在 list 中。

返回值:

属性名称

classmethod properties_with_refs() dict[str, Property[Any]] #

收集此类上所有也具有引用的属性的名称。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

返回值:

具有引用的属性的名称

返回类型:

set[str]

properties_with_values(*, include_defaults: bool = True, include_undefined: bool = False) dict[str, Any] #

收集一个字典,将属性名称映射到它们的值。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

不可序列化的属性将被跳过,并且属性值采用“序列化”格式,这可能与您通常从属性中读取的值略有不同;此方法的目的是返回无损地重构对象实例所需的信息。

参数:

include_defaults (bool, 可选) – 是否包括自对象创建以来尚未显式设置的属性。(默认值:True)

返回值:

从属性名称到其值的映射

返回类型:

字典

query_properties_with_values(query: Callable[[PropertyDescriptor[Any]], bool], *, include_defaults: bool = True, include_undefined: bool = False) dict[str, Any] #

使用谓词查询 HasProps 实例的属性值。

参数:
  • query (callable) – 一个可调用对象,它接受属性描述符并返回 True 或 False

  • include_defaults (bool, 可选) – 是否包括用户尚未显式设置的属性(默认值:True)

返回值:

匹配属性的属性名称和值的映射

返回类型:

字典

references() set[Model] #

返回此对象引用的所有 Models

remove_on_change(attr: str, *callbacks: Callable[[str, Any, Any], None]) None #

从此对象中移除一个回调

select(selector: SelectorType) Iterable[Model] #

查询此对象及其所有引用,以查找与给定选择器匹配的对象。

参数:

selector (JSON-like)

返回值:

seq[Model]

select_one(selector: SelectorType) Model | None #

查询此对象及其所有引用,以查找与给定选择器匹配的对象。如果找到多个对象,则引发错误。返回单个匹配对象,如果未找到任何对象,则返回 None :param selector: :type selector: JSON-like

返回值:

Model

set_from_json(name: str, value: Any, *, setter: Setter | None = None) None #

从 JSON 设置此对象上的属性值。

参数:
  • name (str) – 要设置的属性的名称

  • value (JSON-value) – 要设置给属性的值

  • setter (ClientSessionServerSessionNone, 可选) –

    这用于防止对 Bokeh 应用程序的“回旋镖”更新。

    在 Bokeh 服务器应用程序的上下文中,传入的属性更新将使用正在执行更新的会话进行注释。此值会通过更新触发的任何后续更改通知传播。会话可以将事件 setter 与自身进行比较,并阻止任何源自自身的更新。

返回值:

None

set_select(selector: type[Model] | SelectorType, updates: dict[str, Any]) None #

使用指定的属性/值更新来更新与给定选择器匹配的对象。

参数:
  • selector (JSON-like)

  • updates (dict)

返回值:

None

themed_values() dict[str, Any] | None #

获取任何主题提供的覆盖。

结果以从属性名称到值的字典形式返回,如果主题未覆盖此实例的任何值,则返回 None

返回值:

dict 或 None

to_serializable(serializer: Serializer) ObjectRefRep #

将此对象转换为可序列化的表示形式。

trigger(attr: str, old: Any, new: Any, hint: DocumentPatchedEvent | None = None, setter: Setter | None = None) None #
unapply_theme() None #

移除任何主题值并恢复默认值。

返回值:

None

update(**kwargs: Any) None #

从给定的关键字参数更新对象的属性。

返回值:

None

示例

以下是等效的

from bokeh.models import Range1d

r = Range1d

# set properties individually:
r.start = 10
r.end = 20

# update properties together:
r.update(start=10, end=20)
property document: Document | None #

此模型附加到的 Document (可以是 None

class ImportedStyleSheet(*args: Any, id: ID | None = None, **kwargs: Any)[source]#

基类: StyleSheet

导入的样式表,等效于 <link rel="stylesheet" href="${url}">

Note

根据上下文,此样式表将被附加到父阴影根(如果在组件中使用),否则将附加到 <head> 元素。 如果你想全局附加,而无需考虑上下文,请使用 GlobalImportedStyleSheet 代替。

JSON 原型
{
  "id": "p59067", 
  "js_event_callbacks": {
    "type": "map"
  }, 
  "js_property_callbacks": {
    "type": "map"
  }, 
  "name": null, 
  "subscribed_events": {
    "type": "set"
  }, 
  "syncable": true, 
  "tags": [], 
  "url": {
    "name": "unset", 
    "type": "symbol"
  }
}
name = None #
类型:

Nullable(String)

此模型的一个任意的、用户提供的名称。

当查询文档以检索特定的 Bokeh 模型时,此名称可能很有用。

>>> plot.scatter([1,2,3], [4,5,6], name="temp")
>>> plot.select(name="temp")
[GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]

Note

对于提供的任何名称,不强制执行唯一性保证或其他条件,Bokeh 也不会出于任何原因直接使用该名称。

syncable = True #
类型:

布尔值

指示此模型在 Web 浏览器中更新时是否应同步回 Bokeh 服务器。当处理频繁更新的对象而我们不需要其更新值时,设置为 False 可能有助于减少网络流量。

Note

将此属性设置为 False 将阻止此对象上的任何 on_change() 回调被触发。但是,任何 JS 端的回调仍然有效。

tags = [] #
类型:

列表

一个可选的、用户提供的任意值列表,用于附加到此模型。

当查询文档以检索特定的 Bokeh 模型时,此数据可能很有用

>>> r = plot.scatter([1,2,3], [4,5,6])
>>> r.tags = ["foo", 10]
>>> plot.select(tags=['foo', 10])
[GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]

或者仅仅是将任何必要的元数据附加到模型的一种便捷方式,可以通过 CustomJS 回调等方式访问。

Note

对于提供的任何标签,不强制执行唯一性保证或其他条件,Bokeh 也不会出于任何原因直接使用这些标签。

url = Undefined #
类型:

Required(String)

外部样式表的位置。

apply_theme(property_values: dict[str, Any]) None #

应用一组主题值,这些值将代替默认值使用,但不会覆盖应用程序设置的值。

传入的字典可以按原样保留并与其他实例共享以节省内存(因此调用者和 HasProps 实例都不应修改它)。

参数:

property_values (dict) – 用于代替默认值的主题值

返回值:

None

classmethod clear_extensions() None #

清除任何当前定义的自定义扩展。

序列化调用将导致任何当前定义的自定义扩展包含在生成的文档中,无论是否被使用。此方法可用于清除所有现有的自定义扩展定义。

clone(**overrides: Any) Self #

复制一个 HasProps 对象。

这将创建原始模型的浅克隆,即任何可变容器或子模型都不会被复制。允许在克隆时覆盖特定的属性。

classmethod dataspecs() dict[str, DataSpec] #

收集此类上所有 DataSpec 属性的名称。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

返回值:

DataSpec 属性的名称

返回类型:

set[str]

classmethod descriptors() list[PropertyDescriptor[Any]] #

属性描述符列表,按定义顺序排列。

destroy() None #

清理对文档和属性的引用

equals(other: HasProps) bool #

模型的结构相等性。

参数:

other (HasProps) – 要比较的另一个实例

返回值:

如果属性在结构上相等,则为 True,否则为 False

使用 JavaScript 链接两个 Bokeh 模型属性。

这是一个便捷方法,简化了添加 CustomJS 回调以在一个 Bokeh 模型属性的值更改时更新另一个属性。

参数:
  • attr (str) – 此模型上 Bokeh 属性的名称

  • other (Model) – 要链接到 self.attr 的 Bokeh 模型

  • other_attr (str) – 要链接在一起的 other 上的属性

  • attr_selector (int | str) – 在可下标的 attr 中链接项目的索引

在版本 1.1 中添加

引发:

ValueError

示例

使用 js_link 的此代码

select.js_link('value', plot, 'sizing_mode')

等效于以下代码

from bokeh.models import CustomJS
select.js_on_change('value',
    CustomJS(args=dict(other=plot),
             code="other.sizing_mode = this.value"
    )
)

此外,要使用 attr_selector 将范围滑块的左侧附加到绘图的 x_range

range_slider.js_link('value', plot.x_range, 'start', attr_selector=0)

这等效于

from bokeh.models import CustomJS
range_slider.js_on_change('value',
    CustomJS(args=dict(other=plot.x_range),
             code="other.start = this.value[0]"
    )
)
js_on_change(event: str, *callbacks: JSChangeCallback) None #

CustomJS 回调附加到任意 BokehJS 模型事件。

在 BokehJS 端,模型属性的更改事件的形式为 "change:property_name"。为了方便起见,如果传递给此方法的事件名称也是模型上属性的名称,则它将自动以 "change:" 为前缀

# these two are equivalent
source.js_on_change('data', callback)
source.js_on_change('change:data', callback)

但是,除了属性更改事件之外,还有其他类型的事件可能需要响应。例如,要在数据流式传输到 ColumnDataSource 时运行回调,请使用源上的 "stream" 事件

source.js_on_change('streaming', callback)
classmethod lookup(name: str, *, raises: bool = True) PropertyDescriptor[Any] | None #

给定属性名称,查找类上 Bokeh 属性的 PropertyDescriptor

参数:
  • name (str) – 要搜索的属性的名称

  • raises (bool) – 如果丢失,是引发异常还是返回 None

返回值:

名为 name 的属性的描述符

返回类型:

PropertyDescriptor

on_change(attr: str, *callbacks: PropertyCallback) None #

在此对象上添加回调,以便在 attr 更改时触发。

参数:
  • attr (str) – 此对象上的属性名称

  • *callbacks (callable) – 要注册的回调函数

返回值:

None

示例

widget.on_change('value', callback1, callback2, ..., callback_n)
on_event(event: str | type[Event], *callbacks: Callable[[Event], None] | Callable[[], None]) None #

当指定事件在此模型上发生时运行回调

并非所有模型都支持所有事件。有关哪些模型能够触发事件的更多信息,请参阅 bokeh.events 中的特定事件。

classmethod parameters() list[Parameter] #

生成适用于从字形派生的函数的 Python Parameter 值。

返回值:

list(Parameter)

类方法 properties(*, _with_props: bool = False) set[str] | dict[str, Property[Any]]#

收集此类上属性的名称。

警告

在未来的 Bokeh 版本中,此方法将返回一个字典,将属性名称映射到属性对象。为了使当前对此方法的使用具有前瞻性,请将返回值包装在 list 中。

返回值:

属性名称

类方法 properties_with_refs() dict[str, Property[Any]]#

收集此类上所有也具有引用的属性的名称。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

返回值:

具有引用的属性的名称

返回类型:

set[str]

properties_with_values(*, include_defaults: bool = True, include_undefined: bool = False) dict[str, Any]#

收集一个字典,将属性名称映射到它们的值。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

不可序列化的属性将被跳过,并且属性值采用“序列化”格式,这可能与您通常从属性中读取的值略有不同;此方法的目的是返回无损地重构对象实例所需的信息。

参数:

include_defaults (bool, 可选) – 是否包括自对象创建以来尚未显式设置的属性。(默认值:True)

返回值:

从属性名称到其值的映射

返回类型:

字典

query_properties_with_values(query: Callable[[PropertyDescriptor[Any]], bool], *, include_defaults: bool = True, include_undefined: bool = False) dict[str, Any]#

使用谓词查询 HasProps 实例的属性值。

参数:
  • query (callable) – 一个可调用对象,它接受属性描述符并返回 True 或 False

  • include_defaults (bool, 可选) – 是否包括用户尚未显式设置的属性(默认值:True)

返回值:

匹配属性的属性名称和值的映射

返回类型:

字典

references() set[Model]#

返回此对象引用的所有 Models

remove_on_change(attr: str, *callbacks: Callable[[str, Any, Any], None]) None#

从此对象中移除一个回调

select(selector: SelectorType) Iterable[Model]#

查询此对象及其所有引用,以查找与给定选择器匹配的对象。

参数:

selector (JSON-like)

返回值:

seq[Model]

select_one(selector: SelectorType) Model | None#

查询此对象及其所有引用,以查找与给定选择器匹配的对象。如果找到多个对象,则引发错误。返回单个匹配对象,如果未找到任何对象,则返回 None :param selector: :type selector: JSON-like

返回值:

Model

set_from_json(name: str, value: Any, *, setter: Setter | None = None) None#

从 JSON 设置此对象上的属性值。

参数:
  • name (str) – 要设置的属性的名称

  • value (JSON-value) – 要设置给属性的值

  • setter (ClientSessionServerSessionNone, 可选) –

    这用于防止对 Bokeh 应用程序的“回旋镖”更新。

    在 Bokeh 服务器应用程序的上下文中,传入的属性更新将使用正在执行更新的会话进行注释。此值会通过更新触发的任何后续更改通知传播。会话可以将事件 setter 与自身进行比较,并阻止任何源自自身的更新。

返回值:

None

set_select(selector: type[Model] | SelectorType, updates: dict[str, Any]) None#

使用指定的属性/值更新来更新与给定选择器匹配的对象。

参数:
  • selector (JSON-like)

  • updates (dict)

返回值:

None

themed_values() dict[str, Any] | None#

获取任何主题提供的覆盖。

结果以从属性名称到值的字典形式返回,如果主题未覆盖此实例的任何值,则返回 None

返回值:

dict 或 None

to_serializable(serializer: Serializer) ObjectRefRep#

将此对象转换为可序列化的表示形式。

trigger(attr: str, old: Any, new: Any, hint: DocumentPatchedEvent | None = None, setter: Setter | None = None) None#
unapply_theme() None#

移除任何主题值并恢复默认值。

返回值:

None

update(**kwargs: Any) None#

从给定的关键字参数更新对象的属性。

返回值:

None

示例

以下是等效的

from bokeh.models import Range1d

r = Range1d

# set properties individually:
r.start = 10
r.end = 20

# update properties together:
r.update(start=10, end=20)
属性 document: Document | None#

此模型附加到的 Document (可以是 None

InlineStyleSheet(*args: Any, id: ID | None = None, **kwargs: Any)[source]#

基类: StyleSheet

内联样式表等效于 <style type="text/css">${css}</style>

Note

根据上下文,此样式表将被附加到父阴影根(如果在组件中使用),或者附加到 <head> 元素。 如果您希望全局附加,而无需考虑上下文,请使用 GlobalInlineStyleSheet 代替。

JSON 原型
{
  "css": {
    "name": "unset", 
    "type": "symbol"
  }, 
  "id": "p59072", 
  "js_event_callbacks": {
    "type": "map"
  }, 
  "js_property_callbacks": {
    "type": "map"
  }, 
  "name": null, 
  "subscribed_events": {
    "type": "set"
  }, 
  "syncable": true, 
  "tags": []
}
css = Undefined#
类型:

Required(String)

此样式表的内容。

name = None#
类型:

Nullable(String)

此模型的一个任意的、用户提供的名称。

当查询文档以检索特定的 Bokeh 模型时,此名称可能很有用。

>>> plot.scatter([1,2,3], [4,5,6], name="temp")
>>> plot.select(name="temp")
[GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]

Note

对于提供的任何名称,不强制执行唯一性保证或其他条件,Bokeh 也不会出于任何原因直接使用该名称。

syncable = True#
类型:

布尔值

指示此模型在 Web 浏览器中更新时是否应同步回 Bokeh 服务器。当处理频繁更新的对象而我们不需要其更新值时,设置为 False 可能有助于减少网络流量。

Note

将此属性设置为 False 将阻止此对象上的任何 on_change() 回调被触发。但是,任何 JS 端的回调仍然有效。

tags = []#
类型:

列表

一个可选的、用户提供的任意值列表,用于附加到此模型。

当查询文档以检索特定的 Bokeh 模型时,此数据可能很有用

>>> r = plot.scatter([1,2,3], [4,5,6])
>>> r.tags = ["foo", 10]
>>> plot.select(tags=['foo', 10])
[GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]

或者仅仅是将任何必要的元数据附加到模型的一种便捷方式,可以通过 CustomJS 回调等方式访问。

Note

对于提供的任何标签,不强制执行唯一性保证或其他条件,Bokeh 也不会出于任何原因直接使用这些标签。

apply_theme(property_values: dict[str, Any]) None#

应用一组主题值,这些值将代替默认值使用,但不会覆盖应用程序设置的值。

传入的字典可以按原样保留并与其他实例共享以节省内存(因此调用者和 HasProps 实例都不应修改它)。

参数:

property_values (dict) – 用于代替默认值的主题值

返回值:

None

类方法 clear_extensions() None#

清除任何当前定义的自定义扩展。

序列化调用将导致任何当前定义的自定义扩展包含在生成的文档中,无论是否被使用。此方法可用于清除所有现有的自定义扩展定义。

clone(**overrides: Any) Self#

复制一个 HasProps 对象。

这将创建原始模型的浅克隆,即任何可变容器或子模型都不会被复制。允许在克隆时覆盖特定的属性。

类方法 dataspecs() dict[str, DataSpec]#

收集此类上所有 DataSpec 属性的名称。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

返回值:

DataSpec 属性的名称

返回类型:

set[str]

类方法 descriptors() list[PropertyDescriptor[Any]]#

属性描述符列表,按定义顺序排列。

destroy() None#

清理对文档和属性的引用

equals(other: HasProps) bool#

模型的结构相等性。

参数:

other (HasProps) – 要比较的另一个实例

返回值:

如果属性在结构上相等,则为 True,否则为 False

使用 JavaScript 链接两个 Bokeh 模型属性。

这是一个便捷方法,简化了添加 CustomJS 回调以在一个 Bokeh 模型属性的值更改时更新另一个属性。

参数:
  • attr (str) – 此模型上 Bokeh 属性的名称

  • other (Model) – 要链接到 self.attr 的 Bokeh 模型

  • other_attr (str) – 要链接在一起的 other 上的属性

  • attr_selector (int | str) – 在可下标的 attr 中链接项目的索引

在版本 1.1 中添加

引发:

ValueError

示例

使用 js_link 的此代码

select.js_link('value', plot, 'sizing_mode')

等效于以下代码

from bokeh.models import CustomJS
select.js_on_change('value',
    CustomJS(args=dict(other=plot),
             code="other.sizing_mode = this.value"
    )
)

此外,要使用 attr_selector 将范围滑块的左侧附加到绘图的 x_range

range_slider.js_link('value', plot.x_range, 'start', attr_selector=0)

这等效于

from bokeh.models import CustomJS
range_slider.js_on_change('value',
    CustomJS(args=dict(other=plot.x_range),
             code="other.start = this.value[0]"
    )
)
js_on_change(event: str, *callbacks: JSChangeCallback) None#

CustomJS 回调附加到任意 BokehJS 模型事件。

在 BokehJS 端,模型属性的更改事件的形式为 "change:property_name"。为了方便起见,如果传递给此方法的事件名称也是模型上属性的名称,则它将自动以 "change:" 为前缀

# these two are equivalent
source.js_on_change('data', callback)
source.js_on_change('change:data', callback)

但是,除了属性更改事件之外,还有其他类型的事件可能需要响应。例如,要在数据流式传输到 ColumnDataSource 时运行回调,请使用源上的 "stream" 事件

source.js_on_change('streaming', callback)
类方法 lookup(name: str, *, raises: bool = True) PropertyDescriptor[Any] | None#

给定属性名称,查找类上 Bokeh 属性的 PropertyDescriptor

参数:
  • name (str) – 要搜索的属性的名称

  • raises (bool) – 如果丢失,是引发异常还是返回 None

返回值:

名为 name 的属性的描述符

返回类型:

PropertyDescriptor

on_change(attr: str, *callbacks: PropertyCallback) None#

在此对象上添加回调,以便在 attr 更改时触发。

参数:
  • attr (str) – 此对象上的属性名称

  • *callbacks (callable) – 要注册的回调函数

返回值:

None

示例

widget.on_change('value', callback1, callback2, ..., callback_n)
on_event(event: str | type[Event], *callbacks: Callable[[Event], None] | Callable[[], None]) None#

当指定事件在此模型上发生时运行回调

并非所有模型都支持所有事件。有关哪些模型能够触发事件的更多信息,请参阅 bokeh.events 中的特定事件。

classmethod parameters() list[Parameter]#

生成适用于从字形派生的函数的 Python Parameter 值。

返回值:

list(Parameter)

classmethod properties(*, _with_props: bool = False) set[str] | dict[str, Property[Any]]#

收集此类上属性的名称。

警告

在未来的 Bokeh 版本中,此方法将返回一个字典,将属性名称映射到属性对象。为了使当前对此方法的使用具有前瞻性,请将返回值包装在 list 中。

返回值:

属性名称

classmethod properties_with_refs() dict[str, Property[Any]]#

收集此类上所有也具有引用的属性的名称。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

返回值:

具有引用的属性的名称

返回类型:

set[str]

properties_with_values(*, include_defaults: bool = True, include_undefined: bool = False) dict[str, Any]#

收集一个字典,将属性名称映射到它们的值。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

不可序列化的属性将被跳过,并且属性值采用“序列化”格式,这可能与您通常从属性中读取的值略有不同;此方法的目的是返回无损地重构对象实例所需的信息。

参数:

include_defaults (bool, 可选) – 是否包括自对象创建以来尚未显式设置的属性。(默认值:True)

返回值:

从属性名称到其值的映射

返回类型:

字典

query_properties_with_values(query: Callable[[PropertyDescriptor[Any]], bool], *, include_defaults: bool = True, include_undefined: bool = False) dict[str, Any]#

使用谓词查询 HasProps 实例的属性值。

参数:
  • query (callable) – 一个可调用对象,它接受属性描述符并返回 True 或 False

  • include_defaults (bool, 可选) – 是否包括用户尚未显式设置的属性(默认值:True)

返回值:

匹配属性的属性名称和值的映射

返回类型:

字典

references() set[Model]#

返回此对象引用的所有 Models

remove_on_change(attr: str, *callbacks: Callable[[str, Any, Any], None]) None#

从此对象中移除一个回调

select(selector: SelectorType) Iterable[Model]#

查询此对象及其所有引用,以查找与给定选择器匹配的对象。

参数:

selector (JSON-like)

返回值:

seq[Model]

select_one(selector: SelectorType) Model | None#

查询此对象及其所有引用,以查找与给定选择器匹配的对象。如果找到多个对象,则引发错误。返回单个匹配对象,如果未找到任何对象,则返回 None :param selector: :type selector: JSON-like

返回值:

Model

set_from_json(name: str, value: Any, *, setter: Setter | None = None) None#

从 JSON 设置此对象上的属性值。

参数:
  • name (str) – 要设置的属性的名称

  • value (JSON-value) – 要设置给属性的值

  • setter (ClientSessionServerSessionNone, 可选) –

    这用于防止对 Bokeh 应用程序的“回旋镖”更新。

    在 Bokeh 服务器应用程序的上下文中,传入的属性更新将使用正在执行更新的会话进行注释。此值会通过更新触发的任何后续更改通知传播。会话可以将事件 setter 与自身进行比较,并阻止任何源自自身的更新。

返回值:

None

set_select(selector: type[Model] | SelectorType, updates: dict[str, Any]) None#

使用指定的属性/值更新来更新与给定选择器匹配的对象。

参数:
  • selector (JSON-like)

  • updates (dict)

返回值:

None

themed_values() dict[str, Any] | None#

获取任何主题提供的覆盖。

结果以从属性名称到值的字典形式返回,如果主题未覆盖此实例的任何值,则返回 None

返回值:

dict 或 None

to_serializable(serializer: Serializer) ObjectRefRep#

将此对象转换为可序列化的表示形式。

trigger(attr: str, old: Any, new: Any, hint: DocumentPatchedEvent | None = None, setter: Setter | None = None) None#
unapply_theme() None#

移除任何主题值并恢复默认值。

返回值:

None

update(**kwargs: Any) None#

从给定的关键字参数更新对象的属性。

返回值:

None

示例

以下是等效的

from bokeh.models import Range1d

r = Range1d

# set properties individually:
r.start = 10
r.end = 20

# update properties together:
r.update(start=10, end=20)
property document: Document | None#

此模型附加到的 Document (可以是 None

class Styles(*args: Any, id: ID | None = None, **kwargs: Any)[source]#

基类: Model

允许配置 DOM 元素的样式属性。

JSON 原型
{
  "align_content": null, 
  "align_items": null, 
  "align_self": null, 
  "alignment_baseline": null, 
  "all": null, 
  "animation": null, 
  "animation_delay": null, 
  "animation_direction": null, 
  "animation_duration": null, 
  "animation_fill_mode": null, 
  "animation_iteration_count": null, 
  "animation_name": null, 
  "animation_play_state": null, 
  "animation_timing_function": null, 
  "aspect_ratio": null, 
  "backface_visibility": null, 
  "background": null, 
  "background_attachment": null, 
  "background_clip": null, 
  "background_color": null, 
  "background_image": null, 
  "background_origin": null, 
  "background_position": null, 
  "background_position_x": null, 
  "background_position_y": null, 
  "background_repeat": null, 
  "background_size": null, 
  "baseline_shift": null, 
  "block_size": null, 
  "border": null, 
  "border_block_end": null, 
  "border_block_end_color": null, 
  "border_block_end_style": null, 
  "border_block_end_width": null, 
  "border_block_start": null, 
  "border_block_start_color": null, 
  "border_block_start_style": null, 
  "border_block_start_width": null, 
  "border_bottom": null, 
  "border_bottom_color": null, 
  "border_bottom_left_radius": null, 
  "border_bottom_right_radius": null, 
  "border_bottom_style": null, 
  "border_bottom_width": null, 
  "border_collapse": null, 
  "border_color": null, 
  "border_image": null, 
  "border_image_outset": null, 
  "border_image_repeat": null, 
  "border_image_slice": null, 
  "border_image_source": null, 
  "border_image_width": null, 
  "border_inline_end": null, 
  "border_inline_end_color": null, 
  "border_inline_end_style": null, 
  "border_inline_end_width": null, 
  "border_inline_start": null, 
  "border_inline_start_color": null, 
  "border_inline_start_style": null, 
  "border_inline_start_width": null, 
  "border_left": null, 
  "border_left_color": null, 
  "border_left_style": null, 
  "border_left_width": null, 
  "border_radius": null, 
  "border_right": null, 
  "border_right_color": null, 
  "border_right_style": null, 
  "border_right_width": null, 
  "border_spacing": null, 
  "border_style": null, 
  "border_top": null, 
  "border_top_color": null, 
  "border_top_left_radius": null, 
  "border_top_right_radius": null, 
  "border_top_style": null, 
  "border_top_width": null, 
  "border_width": null, 
  "bottom": null, 
  "box_shadow": null, 
  "box_sizing": null, 
  "break_after": null, 
  "break_before": null, 
  "break_inside": null, 
  "caption_side": null, 
  "caret_color": null, 
  "clear": null, 
  "clip": null, 
  "clip_path": null, 
  "clip_rule": null, 
  "color": null, 
  "color_interpolation": null, 
  "color_interpolation_filters": null, 
  "column_count": null, 
  "column_fill": null, 
  "column_gap": null, 
  "column_rule": null, 
  "column_rule_color": null, 
  "column_rule_style": null, 
  "column_rule_width": null, 
  "column_span": null, 
  "column_width": null, 
  "columns": null, 
  "content": null, 
  "counter_increment": null, 
  "counter_reset": null, 
  "cursor": null, 
  "direction": null, 
  "display": null, 
  "dominant_baseline": null, 
  "empty_cells": null, 
  "fill": null, 
  "fill_opacity": null, 
  "fill_rule": null, 
  "filter": null, 
  "flex": null, 
  "flex_basis": null, 
  "flex_direction": null, 
  "flex_flow": null, 
  "flex_grow": null, 
  "flex_shrink": null, 
  "flex_wrap": null, 
  "float": null, 
  "flood_color": null, 
  "flood_opacity": null, 
  "font": null, 
  "font_family": null, 
  "font_feature_settings": null, 
  "font_kerning": null, 
  "font_size": null, 
  "font_size_adjust": null, 
  "font_stretch": null, 
  "font_style": null, 
  "font_synthesis": null, 
  "font_variant": null, 
  "font_variant_caps": null, 
  "font_variant_east_asian": null, 
  "font_variant_ligatures": null, 
  "font_variant_numeric": null, 
  "font_variant_position": null, 
  "font_weight": null, 
  "gap": null, 
  "glyph_orientation_vertical": null, 
  "grid": null, 
  "grid_area": null, 
  "grid_auto_columns": null, 
  "grid_auto_flow": null, 
  "grid_auto_rows": null, 
  "grid_column": null, 
  "grid_column_end": null, 
  "grid_column_gap": null, 
  "grid_column_start": null, 
  "grid_gap": null, 
  "grid_row": null, 
  "grid_row_end": null, 
  "grid_row_gap": null, 
  "grid_row_start": null, 
  "grid_template": null, 
  "grid_template_areas": null, 
  "grid_template_columns": null, 
  "grid_template_rows": null, 
  "height": null, 
  "hyphens": null, 
  "id": "p59077", 
  "image_orientation": null, 
  "image_rendering": null, 
  "inline_size": null, 
  "js_event_callbacks": {
    "type": "map"
  }, 
  "js_property_callbacks": {
    "type": "map"
  }, 
  "justify_content": null, 
  "justify_items": null, 
  "justify_self": null, 
  "left": null, 
  "letter_spacing": null, 
  "lighting_color": null, 
  "line_break": null, 
  "line_height": null, 
  "list_style": null, 
  "list_style_image": null, 
  "list_style_position": null, 
  "list_style_type": null, 
  "margin": null, 
  "margin_block_end": null, 
  "margin_block_start": null, 
  "margin_bottom": null, 
  "margin_inline_end": null, 
  "margin_inline_start": null, 
  "margin_left": null, 
  "margin_right": null, 
  "margin_top": null, 
  "marker": null, 
  "marker_end": null, 
  "marker_mid": null, 
  "marker_start": null, 
  "mask": null, 
  "mask_composite": null, 
  "mask_image": null, 
  "mask_position": null, 
  "mask_repeat": null, 
  "mask_size": null, 
  "mask_type": null, 
  "max_block_size": null, 
  "max_height": null, 
  "max_inline_size": null, 
  "max_width": null, 
  "min_block_size": null, 
  "min_height": null, 
  "min_inline_size": null, 
  "min_width": null, 
  "name": null, 
  "object_fit": null, 
  "object_position": null, 
  "opacity": null, 
  "order": null, 
  "orphans": null, 
  "outline": null, 
  "outline_color": null, 
  "outline_offset": null, 
  "outline_style": null, 
  "outline_width": null, 
  "overflow": null, 
  "overflow_anchor": null, 
  "overflow_wrap": null, 
  "overflow_x": null, 
  "overflow_y": null, 
  "overscroll_behavior": null, 
  "overscroll_behavior_block": null, 
  "overscroll_behavior_inline": null, 
  "overscroll_behavior_x": null, 
  "overscroll_behavior_y": null, 
  "padding": null, 
  "padding_block_end": null, 
  "padding_block_start": null, 
  "padding_bottom": null, 
  "padding_inline_end": null, 
  "padding_inline_start": null, 
  "padding_left": null, 
  "padding_right": null, 
  "padding_top": null, 
  "page_break_after": null, 
  "page_break_before": null, 
  "page_break_inside": null, 
  "paint_order": null, 
  "perspective": null, 
  "perspective_origin": null, 
  "place_content": null, 
  "place_items": null, 
  "place_self": null, 
  "pointer_events": null, 
  "position": null, 
  "quotes": null, 
  "resize": null, 
  "right": null, 
  "rotate": null, 
  "row_gap": null, 
  "ruby_align": null, 
  "ruby_position": null, 
  "scale": null, 
  "scroll_behavior": null, 
  "shape_rendering": null, 
  "stop_color": null, 
  "stop_opacity": null, 
  "stroke": null, 
  "stroke_dasharray": null, 
  "stroke_dashoffset": null, 
  "stroke_linecap": null, 
  "stroke_linejoin": null, 
  "stroke_miterlimit": null, 
  "stroke_opacity": null, 
  "stroke_width": null, 
  "subscribed_events": {
    "type": "set"
  }, 
  "syncable": true, 
  "tab_size": null, 
  "table_layout": null, 
  "tags": [], 
  "text_align": null, 
  "text_align_last": null, 
  "text_anchor": null, 
  "text_combine_upright": null, 
  "text_decoration": null, 
  "text_decoration_color": null, 
  "text_decoration_line": null, 
  "text_decoration_style": null, 
  "text_emphasis": null, 
  "text_emphasis_color": null, 
  "text_emphasis_position": null, 
  "text_emphasis_style": null, 
  "text_indent": null, 
  "text_justify": null, 
  "text_orientation": null, 
  "text_overflow": null, 
  "text_rendering": null, 
  "text_shadow": null, 
  "text_transform": null, 
  "text_underline_position": null, 
  "top": null, 
  "touch_action": null, 
  "transform": null, 
  "transform_box": null, 
  "transform_origin": null, 
  "transform_style": null, 
  "transition": null, 
  "transition_delay": null, 
  "transition_duration": null, 
  "transition_property": null, 
  "transition_timing_function": null, 
  "translate": null, 
  "unicode_bidi": null, 
  "user_select": null, 
  "vertical_align": null, 
  "visibility": null, 
  "white_space": null, 
  "widows": null, 
  "width": null, 
  "will_change": null, 
  "word_break": null, 
  "word_spacing": null, 
  "word_wrap": null, 
  "writing_mode": null, 
  "z_index": null
}
min_inline_size = None#
类型:

Nullable(String)

The min-inline-size CSS 属性定义了元素块的水平或垂直最小尺寸,具体取决于其书写模式。它对应于 min-widthmin-height 属性,具体取决于 writing-mode 的值。

name = None#
类型:

Nullable(String)

此模型的一个任意的、用户提供的名称。

当查询文档以检索特定的 Bokeh 模型时,此名称可能很有用。

>>> plot.scatter([1,2,3], [4,5,6], name="temp")
>>> plot.select(name="temp")
[GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]

Note

对于提供的任何名称,不强制执行唯一性保证或其他条件,Bokeh 也不会出于任何原因直接使用该名称。

syncable = True#
类型:

布尔值

指示此模型在 Web 浏览器中更新时是否应同步回 Bokeh 服务器。当处理频繁更新的对象而我们不需要其更新值时,设置为 False 可能有助于减少网络流量。

Note

将此属性设置为 False 将阻止此对象上的任何 on_change() 回调被触发。但是,任何 JS 端的回调仍然有效。

tags = []#
类型:

列表

一个可选的、用户提供的任意值列表,用于附加到此模型。

当查询文档以检索特定的 Bokeh 模型时,此数据可能很有用

>>> r = plot.scatter([1,2,3], [4,5,6])
>>> r.tags = ["foo", 10]
>>> plot.select(tags=['foo', 10])
[GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]

或者仅仅是将任何必要的元数据附加到模型的一种便捷方式,可以通过 CustomJS 回调等方式访问。

Note

对于提供的任何标签,不强制执行唯一性保证或其他条件,Bokeh 也不会出于任何原因直接使用这些标签。

apply_theme(property_values: dict[str, Any]) None#

应用一组主题值,这些值将代替默认值使用,但不会覆盖应用程序设置的值。

传入的字典可以按原样保留并与其他实例共享以节省内存(因此调用者和 HasProps 实例都不应修改它)。

参数:

property_values (dict) – 用于代替默认值的主题值

返回值:

None

classmethod clear_extensions() None#

清除任何当前定义的自定义扩展。

序列化调用将导致任何当前定义的自定义扩展包含在生成的文档中,无论是否被使用。此方法可用于清除所有现有的自定义扩展定义。

clone(**overrides: Any) Self#

复制一个 HasProps 对象。

这将创建原始模型的浅克隆,即任何可变容器或子模型都不会被复制。允许在克隆时覆盖特定的属性。

classmethod dataspecs() dict[str, DataSpec]#

收集此类上所有 DataSpec 属性的名称。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

返回值:

DataSpec 属性的名称

返回类型:

set[str]

classmethod descriptors() list[PropertyDescriptor]#

属性描述符列表,按定义顺序排列。

destroy() None#

清理对文档和属性的引用

equals(other: HasProps) bool#

模型的结构相等性。

参数:

other (HasProps) – 要比较的另一个实例

返回值:

如果属性在结构上相等,则为 True,否则为 False

使用 JavaScript 链接两个 Bokeh 模型属性。

这是一个便捷方法,简化了添加 CustomJS 回调以在一个 Bokeh 模型属性的值更改时更新另一个属性。

参数:
  • attr (str) – 此模型上 Bokeh 属性的名称

  • other (Model) – 要链接到 self.attr 的 Bokeh 模型

  • other_attr (str) – 要链接在一起的 other 上的属性

  • attr_selector (int | str) – 在可下标的 attr 中链接项目的索引

在版本 1.1 中添加

引发:

ValueError

示例

使用 js_link 的此代码

select.js_link('value', plot, 'sizing_mode')

等效于以下代码

from bokeh.models import CustomJS
select.js_on_change('value',
    CustomJS(args=dict(other=plot),
             code="other.sizing_mode = this.value"
    )
)

此外,要使用 attr_selector 将范围滑块的左侧附加到绘图的 x_range

range_slider.js_link('value', plot.x_range, 'start', attr_selector=0)

这等效于

from bokeh.models import CustomJS
range_slider.js_on_change('value',
    CustomJS(args=dict(other=plot.x_range),
             code="other.start = this.value[0]"
    )
)
js_on_change(event: str, *callbacks: JSChangeCallback) None#

CustomJS 回调附加到任意 BokehJS 模型事件。

在 BokehJS 端,模型属性的更改事件的形式为 "change:property_name"。为了方便起见,如果传递给此方法的事件名称也是模型上属性的名称,则它将自动以 "change:" 为前缀

# these two are equivalent
source.js_on_change('data', callback)
source.js_on_change('change:data', callback)

但是,除了属性更改事件之外,还有其他类型的事件可能需要响应。例如,要在数据流式传输到 ColumnDataSource 时运行回调,请使用源上的 "stream" 事件

source.js_on_change('streaming', callback)
classmethod lookup(name: str, *, raises: bool = True) PropertyDescriptor] | None#

给定属性名称,查找类上 Bokeh 属性的 PropertyDescriptor

参数:
  • name (str) – 要搜索的属性的名称

  • raises (bool) – 如果丢失,是引发异常还是返回 None

返回值:

名为 name 的属性的描述符

返回类型:

PropertyDescriptor

on_change(attr: str, *callbacks: PropertyCallback) None#

在此对象上添加回调,以便在 attr 更改时触发。

参数:
  • attr (str) – 此对象上的属性名称

  • *callbacks (callable) – 要注册的回调函数

返回值:

None

示例

widget.on_change('value', callback1, callback2, ..., callback_n)
on_event(event: str | type[Event], *callbacks: Callable[[Event], None] | Callable[[], None]) None#

当指定事件在此模型上发生时运行回调

并非所有模型都支持所有事件。有关哪些模型能够触发事件的更多信息,请参阅 bokeh.events 中的特定事件。

classmethod parameters() list[Parameter]#

生成适用于从字形派生的函数的 Python Parameter 值。

返回值:

list(Parameter)

classmethod properties(*, _with_props: bool = False) set[str] | dict[str, Property[Any]]#

收集此类上属性的名称。

警告

在未来的 Bokeh 版本中,此方法将返回一个字典,将属性名称映射到属性对象。为了使当前对此方法的使用具有前瞻性,请将返回值包装在 list 中。

返回值:

属性名称

classmethod properties_with_refs() dict[str, Property[Any]]#

收集此类上所有也具有引用的属性的名称。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

返回值:

具有引用的属性的名称

返回类型:

set[str]

properties_with_values(*, include_defaults: bool = True, include_undefined: bool = False) dict[str, Any]#

收集一个字典,将属性名称映射到它们的值。

此方法始终遍历类层次结构,并包括在任何父类上定义的属性。

不可序列化的属性将被跳过,并且属性值采用“序列化”格式,这可能与您通常从属性中读取的值略有不同;此方法的目的是返回无损地重构对象实例所需的信息。

参数:

include_defaults (bool, 可选) – 是否包括自对象创建以来尚未显式设置的属性。(默认值:True)

返回值:

从属性名称到其值的映射

返回类型:

字典

query_properties_with_values(query: Callable[[PropertyDescriptor[Any]], bool], *, include_defaults: bool = True, include_undefined: bool = False) dict[str, Any]#

使用谓词查询 HasProps 实例的属性值。

参数:
  • query (callable) – 一个可调用对象,它接受属性描述符并返回 True 或 False

  • include_defaults (bool, 可选) – 是否包括用户尚未显式设置的属性(默认值:True)

返回值:

匹配属性的属性名称和值的映射

返回类型:

字典

references() set[Model]#

返回此对象引用的所有 Models

remove_on_change(attr: str, *callbacks: Callable[[str, Any, Any], None]) None#

从此对象中移除一个回调

select(selector: SelectorType) Iterable[Model]#

查询此对象及其所有引用,以查找与给定选择器匹配的对象。

参数:

selector (JSON-like)

返回值:

seq[Model]

select_one(selector: SelectorType) Model | None#

查询此对象及其所有引用,以查找与给定选择器匹配的对象。如果找到多个对象,则引发错误。返回单个匹配对象,如果未找到任何对象,则返回 None :param selector: :type selector: JSON-like

返回值:

Model

set_from_json(name: str, value: Any, *, setter: Setter | None = None) None#

从 JSON 设置此对象上的属性值。

参数:
  • name (str) – 要设置的属性的名称

  • value (JSON-value) – 要设置给属性的值

  • setter (ClientSessionServerSessionNone, 可选) –

    这用于防止对 Bokeh 应用程序的“回旋镖”更新。

    在 Bokeh 服务器应用程序的上下文中,传入的属性更新将使用正在执行更新的会话进行注释。此值会通过更新触发的任何后续更改通知传播。会话可以将事件 setter 与自身进行比较,并阻止任何源自自身的更新。

返回值:

None

set_select(selector: type[Model] | SelectorType, updates: dict[str, Any]) None#

使用指定的属性/值更新来更新与给定选择器匹配的对象。

参数:
  • selector (JSON-like)

  • updates (dict)

返回值:

None

themed_values() dict[str, Any] | None#

获取任何主题提供的覆盖。

结果以从属性名称到值的字典形式返回,如果主题未覆盖此实例的任何值,则返回 None

返回值:

dict 或 None

to_serializable(serializer: Serializer) ObjectRefRep#

将此对象转换为可序列化的表示形式。

trigger(attr: str, old: Any, new: Any, hint: DocumentPatchedEvent | None = None, setter: Setter | None = None) None#
unapply_theme() None#

移除任何主题值并恢复默认值。

返回值:

None

update(**kwargs: Any) None#

从给定的关键字参数更新对象的属性。

返回值:

None

示例

以下是等效的

from bokeh.models import Range1d

r = Range1d

# set properties individually:
r.start = 10
r.end = 20

# update properties together:
r.update(start=10, end=20)
property document: Document | None#

此模型附加到的 Document (可以是 None