diff mbox series

[1/2] buildperf: Avoid step usage in performance line graphs

Message ID 20250328221345.1462122-1-richard.purdie@linuxfoundation.org
State Accepted, archived
Commit 60cc8cf421c0b04f774fd42a415f275ad457bcdf
Headers show
Series [1/2] buildperf: Avoid step usage in performance line graphs | expand

Commit Message

Richard Purdie March 28, 2025, 10:13 p.m. UTC
When using steps in the line chart, you have to look long and hard
to understand if the data is the lower or upper point on the step.

Whilst not as pretty, the sloped line charts are more accurate so
switch to those as the transition points are important and the main
reason for the charts.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 scripts/lib/build_perf/html/measurement_chart.html | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/scripts/lib/build_perf/html/measurement_chart.html b/scripts/lib/build_perf/html/measurement_chart.html
index 3cd713a2ee5..5e4f4be336f 100644
--- a/scripts/lib/build_perf/html/measurement_chart.html
+++ b/scripts/lib/build_perf/html/measurement_chart.html
@@ -82,7 +82,6 @@ 
       {
         name: '{{ measurement.value_type.quantity }}',
         type: 'line',
-        step: 'start',
         symbol: 'none',
         data: data
       }
@@ -137,7 +136,6 @@ 
       {
         name: '{{ measurement.value_type.quantity }}',
         type: 'line',
-        step: 'start',
         symbol: 'none',
         data: commitCountData
       }