Table is layed out as shown, and the screenshots illustrate the problem: it spills out of divs when window width is reduced past a certain point. Is there a fix for this?
Thank you in advance for any ideas on how to rectify.
row_5 = html.Div([
dbc.Row
(
dbc.Col
(
html.Div
(
id="div-row-5",
className="div-row-5",
children=
[
info_row("row-5","lg"),
content_row_5
]
)
)
)
])
content_row_5 = dbc.Row ([
dbc.Col
([
html.Div([
dbc.Row([
dbc.Col([
html.Div
(
[
html.Label("Data",className='div-label',id='div-data-label'),
],
className="slider-label"),
dash_table.DataTable
(
id='data-table'
,page_action="native"
,page_current= 0
,page_size= 10
,filter_action='native'
,columns=[]
,data=[]
,merge_duplicate_headers=True
,style_data={'overflow': 'hidden'}
,style_header={'textAlign': 'center'}
,style_cell=
{
'textAlign': 'right'
,'padding':'5px'
}
,style_cell_conditional=
[
{
'if': {'column_id': 'location'}
,'textAlign': 'left'
,'textOverflow': 'ellipsis'
,'maxWidth': 200
},
{
'if': {'column_id': 'fips'}
,'textAlign': 'left'
}
]
),
])
])
])