Advertisement
Guest User

Untitled

a guest
Jun 25th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 KB | None | 0 0
  1. dbc.Row([dbc.Col(tbl.DataTable(id='frame-table',
  2. columns=FRAME_COLUMNS,
  3. data=[],
  4. style_cell={'backgroundColor': 'rgb(50, 50, 50)', 'color': 'white', 'border': '1px solid white'},
  5. style_header={'textAlign': 'center', 'backgroundColor': 'rgb(30, 30, 30)'},
  6. editable=True),
  7. lg=4),
  8. dbc.Col(children=[html.H5('Set the EigenValue Speed Range [m/s]:'),
  9. dcc.RangeSlider(id='range-slider',
  10. min=-45,
  11. max=45,
  12. step=5,
  13. value=[0, 10],
  14. marks={-40: {'label': '-40', 'style': {'color': '#ffffff'}},
  15. -30: {'label': '-30', 'style': {'color': '#ffffff'}},
  16. -20: {'label': '-20', 'style': {'color': '#ffffff'}},
  17. -10: {'label': '-10', 'style': {'color': '#ffffff'}},
  18. 0: {'label': '0', 'style': {'color': '#ffffff'}},
  19. 10: {'label': '10', 'style': {'color': '#ffffff'}},
  20. 20: {'label': '20', 'style': {'color': '#ffffff'}},
  21. 30: {'label': '30', 'style': {'color': '#ffffff'}},
  22. 40: {'label': '40', 'style': {'color': '#ffffff'}}},
  23. allowCross=False),
  24. dbc.Row([dbc.Col(tbl.DataTable(id='wheel-table',
  25. columns=WHEEL_COLUMNS,
  26. data=[],
  27. style_cell={'backgroundColor': 'rgb(50, 50, 50)', 'color': 'white',
  28. 'border': '1px solid white'},
  29. style_header={'textAlign': 'center', 'backgroundColor': 'rgb(30,30,30)'},
  30. editable=True)),
  31. dbc.Col(tbl.DataTable(id='general-table',
  32. columns=GENERAL_COLUMNS,
  33. data=[],
  34. style_cell={'backgroundColor': 'rgb(50, 50, 50)', 'color': 'white',
  35. 'border': '1px solid white'},
  36. style_header={'textAlign': 'center', 'backgroundColor': 'rgb(30,30,30)'},
  37. editable=True))])],
  38. lg=8,
  39. align='end')],
  40. className="my-2"),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement