0

I am building a basic dashboard that displays the word count from messages in my friends' group chat.

The graph works correctly on a desktop browser:

enter image description here

However on mobile the graph has no width at all:

enter image description here

How can I fix this? Any help would be much appreciated. Thanks

TechnoTerry
  • 65
  • 2
  • 6

1 Answers1

0

You are probably missing these meta_tags:

app = dash.Dash(
    meta_tags=[
        {"name": "viewport", "content": "width=device-width, initial-scale=1"}
    ]
)
Andrea
  • 46
  • 1
  • 3