From 1f67285ae6030791c2120cf4f15c66069d7ae9b7 Mon Sep 17 00:00:00 2001 From: SmartRootsSrl Date: Mon, 23 Mar 2026 17:23:49 +0100 Subject: [PATCH] fix: use Small/Header fonts in sottostanti table (consistent with eventi) --- .../Services/Implementations/AnagraficaSectionRenderer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CertReports.Syncfusion/Services/Implementations/AnagraficaSectionRenderer.cs b/CertReports.Syncfusion/Services/Implementations/AnagraficaSectionRenderer.cs index 3c81372..e421cf3 100644 --- a/CertReports.Syncfusion/Services/Implementations/AnagraficaSectionRenderer.cs +++ b/CertReports.Syncfusion/Services/Implementations/AnagraficaSectionRenderer.cs @@ -400,7 +400,7 @@ public class AnagraficaSectionRenderer : IPdfSectionRenderer for (int i = 0; i < headers.Length; i++) { hr.Cells[i].Value = headers[i]; - hr.Cells[i].Style.Font = PdfTheme.TableBold; + hr.Cells[i].Style.Font = PdfTheme.Header; hr.Cells[i].Style.BackgroundBrush = PdfTheme.TableHeaderBrush; hr.Cells[i].Style.TextBrush = PdfTheme.HeaderTextBrush; hr.Cells[i].StringFormat = new PdfStringFormat( @@ -425,7 +425,7 @@ public class AnagraficaSectionRenderer : IPdfSectionRenderer for (int c = 0; c < headers.Length; c++) { - row.Cells[c].Style.Font = PdfTheme.TableFont; + row.Cells[c].Style.Font = PdfTheme.Small; row.Cells[c].StringFormat = new PdfStringFormat( c == 0 ? PdfTextAlignment.Left : PdfTextAlignment.Right); }