make the tics on the y-axis easier readable

People are having trouble to understand durations like
100000 or 2.7E+6 milliseconds. Therefore we are
hanging the labels on the y-axis to include the unit
in the tic's label. We also use multiples of seconds,
minutes, hours and days instead of multiples of 10.
This commit is contained in:
2019-08-25 10:25:47 +02:00
parent 4e9b556ea9
commit 5b57417f75
5 changed files with 186 additions and 21 deletions

View File

@@ -770,8 +770,7 @@ Vue.component('search-bar', {
<label for="search-y-axis-scale">Y-Axis:</label>
<select id="search-y-axis-scale" v-model="searchBar.axisScale">
<option value="LINEAR" selected="selected">linear</option>
<option value="LOG10">log 10</option>
<option value="LOG2">log 2</option>
<option value="LOG10">log</option>
</select>
</div>
@@ -811,7 +810,7 @@ Vue.component('search-bar', {
<option value="SECONDS" title="seconds">seconds</option>
<option value="MINUTES" title="minutes">minutes</option>
<option value="HOURS" title="hours">hours</option>
<option value="DAYS" title="days">hours</option>
<option value="DAYS" title="days">days</option>
</select>
</div>