Skip to content

Commit

Permalink
Enforce equal figure widths in HTML report and make them adjustable b…
Browse files Browse the repository at this point in the history
…y window size (#1154)
  • Loading branch information
eurunuela authored Dec 4, 2024
1 parent 9b4e779 commit 0968290
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tedana/reporting/data/html/report_body_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -176,36 +176,36 @@ <h1>Carpet plots</h1>
<div class="carpet-wrapper">
<div class="carpet-buttons">$buttons</div>
<div class="carpet-plots-image">
<img id="imgCarpetPlot" src="$initialCarpet" />
<img id="imgCarpetPlot" src="$initialCarpet" style="width: 95%; max-width: 1200px; height: auto;" />
</div>
</div>
</div>
<div class="carpet-plots">
<h1>Adaptive mask</h1>
<img id="adaptiveMask" src="$adaptiveMask" style="height: 500px" />
<img id="adaptiveMask" src="$adaptiveMask" style="width: 95%; max-width: 1200px; height: auto;" />
</div>
<div class="carpet-plots">
<h1>T2* and S0</h1>
<h2>T2*</h2>
<div class="carpet-plots-image">
<img id="t2starBrainPlot" src="$t2starBrainPlot" style="height: 500px" />
<img id="t2starBrainPlot" src="$t2starBrainPlot" style="width: 95%; max-width: 1200px; height: auto;" />
</div>
<div class="carpet-plots-image">
<img id="t2starHistogram" src="$t2starHistogram" style="height: 500px" />
<img id="t2starHistogram" src="$t2starHistogram" style="width: 95%; max-width: 1200px; height: auto;" />
</div>
<h2>S0</h2>
<div class="carpet-plots-image">
<img id="s0BrainPlot" src="$s0BrainPlot" style="height: 500px" />
<img id="s0BrainPlot" src="$s0BrainPlot" style="width: 95%; max-width: 1200px; height: auto;" />
</div>
<div class="carpet-plots-image">
<img id="s0Histogram" src="$s0Histogram" style="height: 500px" />
<img id="s0Histogram" src="$s0Histogram" style="width: 95%; max-width: 1200px; height: auto;" />
</div>
<h2>T2* and S0 model fit (RMSE). (Scaled between 2nd and 98th percentiles)</h2>
<div class="carpet-plots-image">
<img id="rmseBrainPlot" src="$rmseBrainPlot" style="height:500px;" />
<img id="rmseBrainPlot" src="$rmseBrainPlot" style="width: 95%; max-width: 1200px; height: auto;" />
</div>
<div class="carpet-plots-image">
<img id="rmseTimeseries" src="$rmseTimeseries" style="height:500px;" />
<img id="rmseTimeseries" src="$rmseTimeseries" style="width: 95%; max-width: 1200px; height: auto;" />
</div>
</div>
</div>
Expand Down

0 comments on commit 0968290

Please sign in to comment.