From 6e2677e04102eb1e6bffd508e187a93e75ac09bf Mon Sep 17 00:00:00 2001 From: Alagris Date: Sun, 20 Jun 2021 19:51:50 +0200 Subject: [PATCH] improve text --- finance.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/finance.py b/finance.py index 9364735..01c329a 100755 --- a/finance.py +++ b/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',