From 60cc8cf421c0b04f774fd42a415f275ad457bcdf Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 28 Mar 2025 22:11:07 +0000 Subject: [PATCH] buildperf: Avoid step usage in performance line graphs 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 --- scripts/lib/build_perf/html/measurement_chart.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/lib/build_perf/html/measurement_chart.html b/scripts/lib/build_perf/html/measurement_chart.html index 3cd713a2ee..5e4f4be336 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 } -- 2.47.2