-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
30 lines (21 loc) · 887 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from typing import Any
from dash import Dash, Input, Output, State
from core.web.types.elements import DashElements
from etc.webapp import DF, get_layout
app = Dash(name=__name__)
app.layout = get_layout(DF)
@app.callback(
Output(component_id='timeline_card', component_property='figure'),
Input(component_id='states-category', component_property='n_clicks'),
State(component_id='dropdown-category-states', component_property='value')
)
def update_data(n_clicks: int, category_state: str | list) -> Any:
elements = DashElements()
filter_data = DF if isinstance(
category_state, list) or category_state is None else DF[
(DF["state"] == category_state)]
fig = elements.timeline(filter_data, opacity=0.5)
fig.update_traces(marker=dict(color=filter_data["color"]))
return fig
if __name__ == '__main__':
app.run_server(debug=True)