Spaces:
Sleeping
Sleeping
Update pages/integratedsuture.py
Browse files
pages/integratedsuture.py
CHANGED
@@ -316,7 +316,10 @@ tab4_content = html.Div([
|
|
316 |
options=df.columns),
|
317 |
]),
|
318 |
html.Div([
|
319 |
-
dcc.Graph(id='scatter-plot-12', figure={}, className='row',config=config_fig
|
|
|
|
|
|
|
320 |
]),
|
321 |
])
|
322 |
|
@@ -330,9 +333,7 @@ layout = html.Div([
|
|
330 |
dcc.Tab(label='QC', value='tab1', children=tab1_content),
|
331 |
dcc.Tab(label='Cell cycle', value='tab2', children=tab2_content),
|
332 |
dcc.Tab(label='Custom', value='tab3', children=tab3_content),
|
333 |
-
dcc.Tab(label='Multi dot', value='tab4', children=tab4_content
|
334 |
-
'font-size': '100%',
|
335 |
-
'height': 400}),
|
336 |
]),
|
337 |
])
|
338 |
|
|
|
316 |
options=df.columns),
|
317 |
]),
|
318 |
html.Div([
|
319 |
+
dcc.Graph(id='scatter-plot-12', figure={}, className='row',config=config_fig,
|
320 |
+
"layout": {
|
321 |
+
"title": "My Dash Graph",
|
322 |
+
"height": 700}, # px)
|
323 |
]),
|
324 |
])
|
325 |
|
|
|
333 |
dcc.Tab(label='QC', value='tab1', children=tab1_content),
|
334 |
dcc.Tab(label='Cell cycle', value='tab2', children=tab2_content),
|
335 |
dcc.Tab(label='Custom', value='tab3', children=tab3_content),
|
336 |
+
dcc.Tab(label='Multi dot', value='tab4', children=tab4_content),
|
|
|
|
|
337 |
]),
|
338 |
])
|
339 |
|