improve text

This commit is contained in:
Alagris 2021-06-20 19:51:50 +02:00
parent 6401bcc462
commit 6e2677e041

View File

@ -70,9 +70,7 @@ app.layout = html.Div(
children=[ children=[
html.Div(className='four columns div-user-controls', html.Div(className='four columns div-user-controls',
children=[ children=[
html.H2('DASH - STOCK PRICES'), html.P('Wybierz akcje (jedną lub więcej) do porównania na wykresie'),
html.P('Visualising time series with Plotly - Dash.'),
html.P('Pick one or more stocks from the dropdown below.'),
html.Div( html.Div(
className='div-for-dropdown', className='div-for-dropdown',
children=[ children=[
@ -81,7 +79,13 @@ app.layout = html.Div(
multi=True, value=selected_stocks_in_graph, multi=True, value=selected_stocks_in_graph,
style={'backgroundColor': '#1E1E1E'}, style={'backgroundColor': '#1E1E1E'},
className='stockselector' 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', dcc.Dropdown(id='table_selector',
options=get_options(stock_list), options=get_options(stock_list),
multi=False, value=selected_stock_in_table, multi=False, value=selected_stock_in_table,
@ -90,6 +94,7 @@ app.layout = html.Div(
) )
], ],
style={'color': '#1E1E1E'}) style={'color': '#1E1E1E'})
] ]
), ),
html.Div(className='eight columns div-for-charts bg-grey', html.Div(className='eight columns div-for-charts bg-grey',