tzurshubi commited on
Commit
794eb5e
·
verified ·
1 Parent(s): 970d111

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -14
app.py CHANGED
@@ -385,13 +385,13 @@ app.layout = html.Div(
385
  style={"maxWidth": "1200px", "margin": "0 auto", "padding": "8px"},
386
  children=[
387
  html.H2("Hypercube Path Explorer (Python/Dash)"),
388
- html.Div(id="stats", style={"opacity": 0.7, "marginBottom": "8px"}),
389
 
390
  html.Div(
391
  style={"display": "grid", "gridTemplateColumns": "1fr 1fr", "gap": "8px", "marginBottom": "0px"},
392
  children=[
393
  html.Div([
394
- html.Label("Dimension d (1–12)"),
395
  dcc.Slider(
396
  id="dim",
397
  min=1,
@@ -402,18 +402,18 @@ app.layout = html.Div(
402
  tooltip={"always_visible": True},
403
  ),
404
  ]),
405
- html.Div([
406
- html.Label("Layout scale"),
407
- dcc.Slider(
408
- id="scale",
409
- min=800, # larger range
410
- max=2600,
411
- step=50,
412
- value=int(DEFAULTS["scale"]), # 1600 by default
413
- marks=None,
414
- tooltip={"always_visible": True},
415
- ),
416
- ]),
417
  html.Div([
418
  dcc.Checklist(
419
  id="show_labels",
 
385
  style={"maxWidth": "1200px", "margin": "0 auto", "padding": "8px"},
386
  children=[
387
  html.H2("Hypercube Path Explorer (Python/Dash)"),
388
+ html.Div(id="stats", style={"opacity": 0.7, "marginBottom": "0px"}),
389
 
390
  html.Div(
391
  style={"display": "grid", "gridTemplateColumns": "1fr 1fr", "gap": "8px", "marginBottom": "0px"},
392
  children=[
393
  html.Div([
394
+ html.Label("Dimension d"),
395
  dcc.Slider(
396
  id="dim",
397
  min=1,
 
402
  tooltip={"always_visible": True},
403
  ),
404
  ]),
405
+ #html.Div([
406
+ # html.Label("Layout scale"),
407
+ # dcc.Slider(
408
+ # id="scale",
409
+ # min=800, # larger range
410
+ # max=2600,
411
+ # step=50,
412
+ # value=int(DEFAULTS["scale"]), # 1600 by default
413
+ # marks=None,
414
+ # tooltip={"always_visible": True},
415
+ # ),
416
+ #]),
417
  html.Div([
418
  dcc.Checklist(
419
  id="show_labels",