From: Richard Purdie Date: Fri, 28 Mar 2025 22:11:07 +0000 (+0000) Subject: buildperf: Avoid step usage in performance line graphs X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60cc8cf421c0b04f774fd42a415f275ad457bcdf;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- 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 }