AnnMarieW / dash-app-gallery

Dash Examples Index
https://dash-example-index.herokuapp.com/
MIT License
59 stars 24 forks source link

adding updated tooltip files #114

Closed milanzmitrovic closed 1 year ago

milanzmitrovic commented 1 year ago

Thanks @AnnMarieW for giving me feedback! :)

Coding-with-Adam commented 1 year ago

Thank you for your help @AnnMarieW . I ended up commenting out the print statement.

When running inside the dash-example-index, the bar graph shrinks and it look like it's only 50 pixels wide. It's hard to see, so I updated the code from dmc.Container to dbc.Container

AnnMarieW commented 1 year ago

When running inside the dash-example-index, the bar graph shrinks and it look like it's only 50 pixels wide. It's hard to see, so I updated the code from dmc.Container to dbc.Container

@Coding-with-Adam @milanzmitrovic That's odd - I tried adding fluid=True to the dmc.Container but that didn't fix it either. Instead of changing to dash-bootstrap-components how about just using a html.Div since this app only uses one component the dmc.Container() or dbc.Container() Then we can eliminate an import statement.

Coding-with-Adam commented 1 year ago

Good idea, @AnnMarieW . I changed it to html.Div. No need for dbc or dmc in this app. It looks good.