Hi, I would like to change the width of daq.Tank()
object. The html.Div()
has a style dict but the component width or size is not varying. Any tips?
html.Div(
daq.Tank(
id='total-positions-tank',
label={
'label': 'Pos',
'font-size': '10px'
},
labelPosition='bottom',
value=33,
showCurrentValue=True,
min=0,
max=60,
scale={
'custom': {
'0': '',
'20': 'Low: 20',
'60': 'High: 60',
}
},
color='green',
size=100,
style= {'margin-left': '30px'}
),
style={'width': '20%'}
)