用plotly / dash更改链接的外观

时间:2018-05-30 20:46:56

标签: python-3.x plotly plotly-dash

我正在与Dash合作构建一个信息中心。请考虑以下代码:

def get_index():
    index = html.Div([
        dcc.Link('Page 1', href='/page-1'),
        html.Br(),
        dcc.Link('Page 2', href='/page-2')
    ], style = {'display':'inline-block','columnCount': 2})
    return index

这在我的应用程序中提供了以下输出:

enter image description here

问题:如何删除链接下方的栏并更改字体和颜色?

谢谢!

1 个答案:

答案 0 :(得分:2)

您可以通过添加x >= 95作为命名参数来自定义链接,例如

style

style参数只是普通的CSS。

我认为将external CSS添加到您的Dash应用程序是可取的,因为您可以将代码逻辑和布局分开。