Details
-
Type:
Story
-
Status: Won't Fix
-
Resolution: Done
-
Fix Version/s: None
-
Component/s: squash
-
Labels:None
-
Story Points:3.2
-
Epic Link:
-
Team:SQuaRE
Description
Use bokeh templates to create this page layout for the drill down plots.
https://bokeh.pydata.org/en/latest/docs/user_guide/embed.html
SQuaSH bokeh apps typicall have the following layout
A header containing:
<Title>
<Description>
<Specification>
<Parameters>
a body containing the plots
<Plots>
and a footer containing additional information
<Reference>
We propose to map this as follows in the app directory structure:
<app_name>/
main.py
app.py
theme.yaml
templates/
index.html
app.py has the layout mentioned above separating the plotting code from specific code needed to load the data and run the bokeh app which lives in main.py.