Skip to content

Commit

Permalink
update graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-dvorak committed Apr 6, 2024
1 parent d9f2cf7 commit 62cb41a
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions DOSPORTAL/templates/records/record_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<td class="">{{record.log_original_filename}} ({{ record.log_file | filesize_mb }})</td>
{% if record.description|length > 1 %}<tr>
<td class="w-auto">Description:</td>
<td class=""><div class="callout m-0 p-2">{{record.formatted_markdown }}</div></td>
<td class=""><div class="callout m-0 p-2">{{record.formatted_markdown | safe }}</div></td>
</tr> {% endif %}
</tr>
{% if record.metadata|length > 4 %} <tr>
Expand Down Expand Up @@ -180,16 +180,18 @@ <h3>Energetic spectrogram:</h3>
max: 'dataMax'
}],
yAxis: [{
//min: 0,
min: 'dataMin',
//max: 'dataMax',
type: 'value',
type: 'log',
logBase: 1000,
boundaryGap: [0, '100%']
}, {
gridIndex: 1,
//min: 'dataMin',
//max: 'dataMax',
type: 'value',
boundaryGap: [0, '100%']
min: 'dataMin',
max: 'dataMax',
type: 'log',
logBase: 5000,
//boundaryGap: [0, '100%']
}],
series: [
{
Expand Down

0 comments on commit 62cb41a

Please sign in to comment.