quitamos la gráfica pie que había quedado al final

en el commit anterior la incluimos en un mismo row con los otros pies
parent fff63c50
...@@ -208,29 +208,6 @@ app.layout = html.Div(children=[ ...@@ -208,29 +208,6 @@ app.layout = html.Div(children=[
#y gráfica #y gráfica
dcc.Graph(id="cobertura_protocolo"), dcc.Graph(id="cobertura_protocolo"),
], className="wrapper"), ], className="wrapper"),
# datos para análisis de comidas
html.Div(children=[
html.H1("Datos para Análisis de comidas", className="header-title2"),
html.P("..en construcción..", style={"color":"red", "font-style":"italic"}),
# dropdown
html.Div(children=[
html.Div(children="Etapa", className="menu-title"),
dcc.Dropdown(
id="mesurableEt",
options=[
{"label":"1", "value":1},
{"label":"2", "value":2},
{"label":"3", "value":3},
{"label":"Total", "value":5},
],
value=1,
clearable=False,
searchable=False,
className="dropdown",
),
], className="wrapper"),
dcc.Graph(figure=comidas_dist)
], className="wrapper")
]) # cierre del layout ]) # cierre del layout
@app.callback( @app.callback(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment