diff options
Diffstat (limited to 'resources/tools/presentation/generator_plots.py')
-rw-r--r-- | resources/tools/presentation/generator_plots.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index 8af9a945d1..d2cc9c0c5e 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -137,14 +137,14 @@ def plot_lat_hdrh_percentile(plot, input_data): hovertext.append( f"Test: {name}<br>" f"Direction: {directions[idx]}<br>" - f"Percentile: {percentile:.5f}<br>%" + f"Percentile: {percentile:.5f}%<br>" f"Latency: {item.value_iterated_to}uSec" ) fig.add_trace( plgo.Scatter( x=xaxis, y=yaxis, - name=name, + name=f"{name} ({directions[idx]})", mode=u"lines", hovertext=hovertext, hoverinfo=u"text" |