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


Python dash_core_components.Slider方法代碼示例

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


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

示例1: NamedSlider

# 需要導入模塊: import dash_core_components [as 別名]
# 或者: from dash_core_components import Slider [as 別名]
def NamedSlider(name, id, min, max, step, value, marks=None):
    if marks:
        step = None
    else:
        marks = {i: i for i in range(min, max + 1, step)}

    return html.Div(
        style={'margin': '25px 5px 30px 0px'},
        children=[
            f"{name}:",

            html.Div(
                style={'margin-left': '5px'},
                children=dcc.Slider(
                    id=id,
                    min=min,
                    max=max,
                    marks=marks,
                    step=step,
                    value=value
                )
            )
        ]
    ) 
開發者ID:plotly,項目名稱:dash-image-processing,代碼行數:26,代碼來源:dash_reusable_components.py

示例2: add_sliders

# 需要導入模塊: import dash_core_components [as 別名]
# 或者: from dash_core_components import Slider [as 別名]
def add_sliders(n_clicks):
    return html.Div(
        [html.Div([
		html.Div(dcc.Slider(id='slider-{}'.format(i))),
	        html.Div(id='output-{}'.format(i), style={'marginTop': 30})
	]) for i in range(n_clicks)]
    )

# up to 10 sliders 
開發者ID:plotly,項目名稱:dash-recipes,代碼行數:11,代碼來源:dash_multiple_sliders.py

示例3: NamedSlider

# 需要導入模塊: import dash_core_components [as 別名]
# 或者: from dash_core_components import Slider [as 別名]
def NamedSlider(name, **kwargs):
    return html.Div(
        style={'padding': '10px 10px 15px 4px'},
        children=[
            html.P(f'{name}:'),
            html.Div(dcc.Slider(**kwargs), style={'margin-left': '6px'})
        ]
    ) 
開發者ID:plotly,項目名稱:dash-regression,代碼行數:10,代碼來源:dash_reusable_components.py

示例4: FormattedSlider

# 需要導入模塊: import dash_core_components [as 別名]
# 或者: from dash_core_components import Slider [as 別名]
def FormattedSlider(**kwargs):
    return html.Div(
        style=kwargs.get('style', {}),
        children=dcc.Slider(**_omit(['style'], kwargs))
    ) 
開發者ID:plotly,項目名稱:dash-svm,代碼行數:7,代碼來源:dash_reusable_components.py

示例5: NamedSlider

# 需要導入模塊: import dash_core_components [as 別名]
# 或者: from dash_core_components import Slider [as 別名]
def NamedSlider(name, **kwargs):
    return html.Div(
        style={'padding': '20px 10px 25px 4px'},
        children=[
            html.P(f'{name}:'),
            html.Div(
                style={'margin-left': '6px'},
                children=dcc.Slider(**kwargs)
            )
        ]
    ) 
開發者ID:plotly,項目名稱:dash-svm,代碼行數:13,代碼來源:dash_reusable_components.py


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