Chart consistency + visual cleanup

This commit is contained in:
2026-07-26 23:04:36 +02:00
parent df83623101
commit aad3b85d8f
10 changed files with 326 additions and 293 deletions
+6 -3
View File
@@ -631,10 +631,13 @@ my %handlers = (
# Need to know which chart uses which datafile
my @faults_charts =
grep { /heatmap|scatter|sankey|instr_fault_correlation/ }
@selected_charts;
grep {
/_heatmap|_scatter|_sankey|_instr_fault_correlation|_instr_fault_rate_heatmap|fault_rates_per_instruction/
} @selected_charts;
my @resultsdata_charts =
grep { /result|combined_comparison|combined_ratio/ } @selected_charts;
grep {
/_result|_fault_count_comparison|_ratio_comparison|_fault_count_correlation/
} @selected_charts;
# Select if faults.csv or a filtered variant should be used
my $faults_csv;