本文整理汇总了Python中bokeh.models.Button方法的典型用法代码示例。如果您正苦于以下问题:Python models.Button方法的具体用法?Python models.Button怎么用?Python models.Button使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bokeh.models
的用法示例。
在下文中一共展示了models.Button方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_next_event_widget
# 需要导入模块: from bokeh import models [as 别名]
# 或者: from bokeh.models import Button [as 别名]
def create_next_event_widget(self):
self.w_next_event = Button(label=">", button_type="default", width=50)
self.w_next_event.on_click(self.on_next_event_widget_click)
示例2: create_previous_event_widget
# 需要导入模块: from bokeh import models [as 别名]
# 或者: from bokeh.models import Button [as 别名]
def create_previous_event_widget(self):
self.w_previous_event = Button(label="<", button_type="default", width=50)
self.w_previous_event.on_click(self.on_previous_event_widget_click)
示例3: create_goto_event_index_widget
# 需要导入模块: from bokeh import models [as 别名]
# 或者: from bokeh.models import Button [as 别名]
def create_goto_event_index_widget(self):
self.w_goto_event_index = Button(
label="GOTO Index", button_type="default", width=100
)
self.w_goto_event_index.on_click(self.on_goto_event_index_widget_click)
示例4: create_goto_event_id_widget
# 需要导入模块: from bokeh import models [as 别名]
# 或者: from bokeh.models import Button [as 别名]
def create_goto_event_id_widget(self):
self.w_goto_event_id = Button(label="GOTO ID", button_type="default", width=70)
self.w_goto_event_id.on_click(self.on_goto_event_id_widget_click)