當前位置: 首頁>>代碼示例>>Python>>正文


Python TextInput.width方法代碼示例

本文整理匯總了Python中bokeh.models.widgets.TextInput.width方法的典型用法代碼示例。如果您正苦於以下問題:Python TextInput.width方法的具體用法?Python TextInput.width怎麽用?Python TextInput.width使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在bokeh.models.widgets.TextInput的用法示例。


在下文中一共展示了TextInput.width方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: RadioButtonGroup

# 需要導入模塊: from bokeh.models.widgets import TextInput [as 別名]
# 或者: from bokeh.models.widgets.TextInput import width [as 別名]
# img = mpimg.imread("cylance_logo.png")
# p_logo.image_url(url=["cylance_logo.png"], x=0, y=0)
# p_logo.background_fill_color = "black"
# p_logo.border_fill_color = "black"
# p_logo.grid.grid_line_color = "black"
# p_logo.outline_line_color = "black"


# radio button group for uploading file
radio_group = RadioButtonGroup(labels=["NO-SPLIT", "SPLIT", "START"], button_type="success")
radio_group.width = 500
radio_group.on_click(_fit_util)

# text for console output
text_input = TextInput(value="", title="CONSOLE")
text_input.width = 500

cluster_stats = Div(
    render_as_text=False,
    text=generate_display_string("", name="Cluster Statistics", height=100)
)
cluster_stats.width = 500
cluster_stats.height = 100

cluster_commonality = Div(
    render_as_text=False,
    text=generate_display_string("")
)
cluster_commonality.width = 500
cluster_commonality.height = 300
開發者ID:CylanceSPEAR,項目名稱:NMAP-Cluster,代碼行數:32,代碼來源:Interactive_Clustering_bokeh.py


注:本文中的bokeh.models.widgets.TextInput.width方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。