improve text
This commit is contained in:
parent
6401bcc462
commit
6e2677e041
13
finance.py
13
finance.py
@ -70,9 +70,7 @@ app.layout = html.Div(
|
||||
children=[
|
||||
html.Div(className='four columns div-user-controls',
|
||||
children=[
|
||||
html.H2('DASH - STOCK PRICES'),
|
||||
html.P('Visualising time series with Plotly - Dash.'),
|
||||
html.P('Pick one or more stocks from the dropdown below.'),
|
||||
html.P('Wybierz akcje (jedną lub więcej) do porównania na wykresie'),
|
||||
html.Div(
|
||||
className='div-for-dropdown',
|
||||
children=[
|
||||
@ -81,7 +79,13 @@ app.layout = html.Div(
|
||||
multi=True, value=selected_stocks_in_graph,
|
||||
style={'backgroundColor': '#1E1E1E'},
|
||||
className='stockselector'
|
||||
),
|
||||
)
|
||||
],
|
||||
style={'color': '#1E1E1E'}),
|
||||
html.P('Wybierz jedną akcję aby zobaczyć szczegóły w tabeli'),
|
||||
html.Div(
|
||||
className='div-for-dropdown',
|
||||
children=[
|
||||
dcc.Dropdown(id='table_selector',
|
||||
options=get_options(stock_list),
|
||||
multi=False, value=selected_stock_in_table,
|
||||
@ -90,6 +94,7 @@ app.layout = html.Div(
|
||||
)
|
||||
],
|
||||
style={'color': '#1E1E1E'})
|
||||
|
||||
]
|
||||
),
|
||||
html.Div(className='eight columns div-for-charts bg-grey',
|
||||
|
Loading…
Reference in New Issue
Block a user