Skip to content

Commit

Permalink
Merge pull request #630 from plotly/add-title
Browse files Browse the repository at this point in the history
Add title to popular apps

Former-commit-id: 93c1b0a
  • Loading branch information
Xing Han Lu authored May 13, 2021
2 parents d6e38d9 + 309a08e commit 02cd53b
Show file tree
Hide file tree
Showing 25 changed files with 31 additions and 5 deletions.
1 change: 1 addition & 0 deletions apps/dash-aerosandbox/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import pandas as pd

app = dash.Dash(external_stylesheets=[dbc.themes.MINTY])
app.title = "Aircraft CFD"
server = app.server

app.layout = dbc.Container(
Expand Down
1 change: 1 addition & 0 deletions apps/dash-avs-explorer/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ def Header(name, app):
mapbox_token = os.getenv("MAPBOX_ACCESS_TOKEN")

app = dash.Dash(__name__, external_stylesheets=[dbc.themes.BOOTSTRAP])
app.title = "Autonomous Vehicle Visualization"
server = app.server

STYLES = ["light", "dark", "satellite"]
Expand Down
1 change: 1 addition & 0 deletions apps/dash-baseball-statistics/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
external_stylesheets=[dbc.themes.SANDSTONE],
meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}],
)
app.title = "Baseball Historical Statistics"
# set app server to variable for deployment
srv = app.server

Expand Down
2 changes: 2 additions & 0 deletions apps/dash-brain-viewer/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}],
)

app.title = "Brain Surface Viewer"

server = app.server

GITHUB_LINK = os.environ.get(
Expand Down
1 change: 1 addition & 0 deletions apps/dash-clinical-analytics/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
__name__,
meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}],
)
app.title = "Clinical Analytics Dashboard"

server = app.server
app.config.suppress_callback_exceptions = True
Expand Down
3 changes: 2 additions & 1 deletion apps/dash-financial-report/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@
)

app = dash.Dash(
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}]
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}],
)
app.title = "Financial Report"
server = app.server

# Describe the layout/ UI of the app
Expand Down
1 change: 1 addition & 0 deletions apps/dash-image-processing/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
APP_PATH = str(pathlib.Path(__file__).parent.resolve())

app = dash.Dash(__name__)
app.title = "Image Processing App"
server = app.server

if "BUCKET_NAME" in os.environ:
Expand Down
3 changes: 2 additions & 1 deletion apps/dash-interest-rate/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@


# Define app
app = dash.Dash(__name__, external_stylesheets=[dbc.themes.BOOTSTRAP])
app = dash.Dash(__name__, external_stylesheets=[dbc.themes.BOOTSTRAP],)
app.title = "Interest Rate Modeling"
server = app.server
cache = Cache(
app.server,
Expand Down
1 change: 1 addition & 0 deletions apps/dash-live-model-training/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
app = dash.Dash(
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}]
)
app.title = "Live Model Training"

server = app.server
demo_mode = True
Expand Down
1 change: 1 addition & 0 deletions apps/dash-manufacture-spc-dashboard/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
__name__,
meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}],
)
app.title = "Manufacturing SPC Dashboard"
server = app.server
app.config["suppress_callback_exceptions"] = True

Expand Down
1 change: 1 addition & 0 deletions apps/dash-medical-provider-charges/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
}
],
)
app.title = "Medical Provider Charges"
server = app.server

app.config["suppress_callback_exceptions"] = True
Expand Down
1 change: 1 addition & 0 deletions apps/dash-multipage-report/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
color_b = "#F8F8FF"

app = dash.Dash(__name__)
app.title = "Multipage Report"

server = app.server

Expand Down
1 change: 1 addition & 0 deletions apps/dash-object-detection/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
__name__,
meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}],
)
app.title = "Object Detection Explorer"
server = app.server
app.config.suppress_callback_exceptions = True

Expand Down
3 changes: 2 additions & 1 deletion apps/dash-oil-and-gas/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
DATA_PATH = PATH.joinpath("data").resolve()

app = dash.Dash(
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}]
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}],
)
app.title = "Oil & Gas Wells"
server = app.server

# Create controls
Expand Down
1 change: 1 addition & 0 deletions apps/dash-opioid-epidemic/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
{"name": "viewport", "content": "width=device-width, initial-scale=1.0"}
],
)
app.title = "US Opioid Epidemic"
server = app.server

# Load data
Expand Down
1 change: 1 addition & 0 deletions apps/dash-peaky-finders/peaky_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
app = dash.Dash(
external_stylesheets=[dbc.themes.LUX], suppress_callback_exceptions=True
)
app.title = "US Electric Grid Forecasting"
server = app.server

"""Homepage"""
Expand Down
1 change: 1 addition & 0 deletions apps/dash-phylogeny/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
)

app = dash.Dash(__name__)
app.title = "Phylogeny Tree Explorer"
server = app.server

virus_name = "measles"
Expand Down
1 change: 1 addition & 0 deletions apps/dash-pk-calc/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@


app = dash.Dash(__name__)
app.title = "Pharmacokinetics Calculator"
server = app.server

APP_PATH = str(pl.Path(__file__).parent.resolve())
Expand Down
1 change: 1 addition & 0 deletions apps/dash-spatial-clustering/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
)

app = dash.Dash(__name__)
app.title = "Real Estate Spatial Clustering"
server = app.server
app.config.suppress_callback_exceptions = True

Expand Down
1 change: 1 addition & 0 deletions apps/dash-svm/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
{"name": "viewport", "content": "width=device-width, initial-scale=1.0"}
],
)
app.title = "Support Vector Machine"
server = app.server


Expand Down
1 change: 1 addition & 0 deletions apps/dash-tsne/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
app = dash.Dash(
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}]
)
app.title = "t-SNE Explorer"

server = app.server
app.layout = create_layout(app)
Expand Down
3 changes: 2 additions & 1 deletion apps/dash-uber-rides-demo/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@


app = dash.Dash(
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}]
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}],
)
app.title = "New York Uber Rides"
server = app.server


Expand Down
3 changes: 2 additions & 1 deletion apps/dash-web-trader/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@


app = dash.Dash(
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}]
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}],
)
app.title = "FOREX Web Trader"

server = app.server

Expand Down
1 change: 1 addition & 0 deletions apps/dash-wind-streaming/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
__name__,
meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}],
)
app.title = "Wind Speed Dashboard"

server = app.server

Expand Down
1 change: 1 addition & 0 deletions apps/dash-yield-curve/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
app = dash.Dash(
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}]
)
app.title = "Yield Curve Analysis"
server = app.server

# get relative data folder
Expand Down

0 comments on commit 02cd53b

Please sign in to comment.