-
Notifications
You must be signed in to change notification settings - Fork 9
/
layout_extras.py
58 lines (53 loc) · 1.69 KB
/
layout_extras.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Dash imports
import dash
from dash import dcc
import dash_bootstrap_components as dbc
from dash import html
import dash_table
from dash.dependencies import Input, Output, State
import dash_daq as daq
# Plotly Imports
import plotly.express as px
import plotly.graph_objects as go
EXTRAS_PANEL = [
dbc.CardHeader(html.H5("LCMS Extras Options")),
dbc.CardBody(
[
dbc.Row([
dbc.Col(
dbc.InputGroup(
[
dbc.InputGroupText("Extras - Metadata Text"),
dbc.Textarea(id='extras_metadata_text', placeholder=""),
],
className="mb-3",
),
)
]),
dbc.Row([
dbc.Col(
dbc.InputGroup(
[
dbc.InputGroupText("Metadata Column", style={"margin-right":"20px"}),
dcc.Dropdown(
id='extras_metadata_column',
options=[
{'label': 'None', 'value': ''},
],
searchable=False,
clearable=False,
value="",
style={
"width":"60%"
}
)
],
className="mb-3",
),
),
dbc.Col(
)
]),
]
)
]