HTML in Dash

Building Dashboards with Dash and Plotly

Alex Scriven

Data Scientist

HTML Revisited

 

  • HTML = language for structuring web content
    • Uses 'tags' like Div, H1>H6
  • Dash wraps HTML using dash html components (dash.html)
    • H1 tag is .H1()
    • Div tag is .Div()
  • Many more tags available!
<div>
  <div style=
       "background-color: red; 
        width:250; height:250;">
  </div>
  <div style=
       "background-color: lightblue; 
        width:250; height:250;">
    <h1>This box</h1>
  </div>
</div>
Building Dashboards with Dash and Plotly

Structuring tags

 

  • Huge list of HTML tags available (See documentation)
  • Important structuring tags:
    • .Br() = New line break
    • .Img() = Insert an image
Building Dashboards with Dash and Plotly

Lists in HTML Dash

 

  • .Ul() \ .Ol() & .Li() = Create lists
    • .Ul() for unordered list (bullet-points, like these!)
    • .Ol() for ordered list (numbered-points)
    • .Li() for each list element

We will practice these!

Building Dashboards with Dash and Plotly

Inserting a company logo

 

Add company logo above the title;

app.layout = html.Div(children=[

html.Img(src='www.website.com/logo.png'), html.H1("Our Sales Dashboard")
])

 

Nice and professional!

A screenshot of the top left of a chrome browser where the URL has the server address in it. The browser has an image of a company logo, a ping diamond that notes E-com global. Below this is a title noting 'Our Sales Dashboard'

Building Dashboards with Dash and Plotly

Text tags

 

Set and format text content

  • .P() or .Span() = Insert plain text
    • Accept a children argument (list of text, .P() or .Span())
  • .B() = Bold some text
  • .I() = Italicize some text
Building Dashboards with Dash and Plotly

HTML text tags in Dash

 

Some complex formatting:

app.layout = html.Div(children=[
   html.H1("Our Sales Dashboard"),

html.Span(children=[
f"Prepared: {datetime.now().date()}",
" by ", html.B("Jessie Parker, "),
html.I("Data Scientist")
])
])

 

A screenshot of the top left of a chrome window where the server address is visible in the URL bar. There is a large title noting 'our sales dashboard', below this is a line noting "Prepared: 2021-06-27 by Jessie Parker, data scientist" Jessie Parker, is in bold and data scientist is in italics

Building Dashboards with Dash and Plotly

Breaking up the text

Adding line breaks:

app.layout = html.Div([
   html.H1("Our Sales Dashboard"),
   html.Span(children=[
   f"Prepared: {datetime.now().date()}", 
   html.Br(),
   " by ", html.B("Jessie Parker, "),
   html.Br(),
   html.I("Data Scientist")])
    ])

 

With line breaks:

A screenshot of the same dashboard as the last slide. A screenshot of the top left of a chrome window where the server address is visible in the URL bar. There is a large title noting 'our sales dashboard'; below this is a line noting "Prepared: 2021-06-27 by Jessie Parker, data scientist" Jessie Parker is in bold, and data scientist is in italics. However, there are now line breaks after the date and the name.

Building Dashboards with Dash and Plotly

Let's practice!

Building Dashboards with Dash and Plotly

Preparing Video For Download...