diff --git a/CertReports.Syncfusion/Services/Implementations/SkiaChartRendererV2.cs b/CertReports.Syncfusion/Services/Implementations/SkiaChartRendererV2.cs index 165d010..21d5e3f 100644 --- a/CertReports.Syncfusion/Services/Implementations/SkiaChartRendererV2.cs +++ b/CertReports.Syncfusion/Services/Implementations/SkiaChartRendererV2.cs @@ -154,7 +154,8 @@ public static class SkiaChartRendererV2 color = OtherUlColors[otherColorIdx++ % OtherUlColors.Length]; thickness = 1f; seriesLabel = ul.Sottostante; - endLabel = $"{ul.Sottostante} ({ul.PriceWorst:0.00})"; + decimal currentPrice = ulPoints.Last().Performance / 100m * ul.Strike; + endLabel = $"{ul.Sottostante} ({currentPrice:0.00})"; } DrawSeriesV2(canvas, plotArea, ulPoints, minDate, maxDate, minY, maxY, color, thickness);