From 25469905560d6cbc62584257420eb2f2f07d7ad4 Mon Sep 17 00:00:00 2001 From: SmartRootsSrl Date: Sat, 21 Mar 2026 11:42:57 +0100 Subject: [PATCH] fix: set Analisi section width to match Caratteristiche Prodotto (ColW) --- .../Implementations/ExpiredAnagraficaSectionRenderer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CertReports.Syncfusion/Services/Implementations/ExpiredAnagraficaSectionRenderer.cs b/CertReports.Syncfusion/Services/Implementations/ExpiredAnagraficaSectionRenderer.cs index ea04a46..d5d1e05 100644 --- a/CertReports.Syncfusion/Services/Implementations/ExpiredAnagraficaSectionRenderer.cs +++ b/CertReports.Syncfusion/Services/Implementations/ExpiredAnagraficaSectionRenderer.cs @@ -197,8 +197,8 @@ public class ExpiredAnagraficaSectionRenderer : IPdfSectionRenderer ("Rendimento Totale", info.RendimentoTotale), }; - // Posizione x=0, larghezza intera pagina — allineato a sinistra come Caratteristiche - return DrawKVList(g, items, 0, PageW, y); + // Posizione x=0, stessa larghezza della tabella Caratteristiche Prodotto + return DrawKVList(g, items, 0, ColW, y); } private float DrawKVList(PdfGraphics g, (string Label, string Value)[] items, float x, float w, float y)