From 64544202307bef0d6c495fb6c07cc24436f1bec6 Mon Sep 17 00:00:00 2001 From: SmartRootsSrl Date: Thu, 28 May 2026 11:13:56 +0200 Subject: [PATCH] feat: add price value to non-WorstOf underlyings end labels Co-Authored-By: Claude Sonnet 4.6 (1M context) --- .../Services/Implementations/SkiaChartRendererV2.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CertReports.Syncfusion/Services/Implementations/SkiaChartRendererV2.cs b/CertReports.Syncfusion/Services/Implementations/SkiaChartRendererV2.cs index 64a1fe2..165d010 100644 --- a/CertReports.Syncfusion/Services/Implementations/SkiaChartRendererV2.cs +++ b/CertReports.Syncfusion/Services/Implementations/SkiaChartRendererV2.cs @@ -154,7 +154,7 @@ public static class SkiaChartRendererV2 color = OtherUlColors[otherColorIdx++ % OtherUlColors.Length]; thickness = 1f; seriesLabel = ul.Sottostante; - endLabel = ul.Sottostante; + endLabel = $"{ul.Sottostante} ({ul.PriceWorst:0.00})"; } DrawSeriesV2(canvas, plotArea, ulPoints, minDate, maxDate, minY, maxY, color, thickness);