scater args fix

This commit is contained in:
Filip Izydorczyk 2021-06-21 20:19:46 +02:00
parent 2ddca0725c
commit 7a1bcc90a1

View File

@ -250,7 +250,7 @@ def change_time_period(selectedData):
[Input('table_selector', 'value')])
def update_point_chart(selected_dropdown_value):
selected_stock_in_table_df = fullTableDf.xs(selected_dropdown_value, axis=1, level=1)
figure = px.scatter(selected_stock_in_table_df, x='Volume', y='Dividends', template='plotly_dark')
figure = px.scatter(selected_stock_in_table_df, x='Dividends', y='Close', template='plotly_dark')
return figure
if __name__ == '__main__':