From d65f9c34ca193517271e1ad9d0686e230d13c0e5 Mon Sep 17 00:00:00 2001 From: GoshaZotov Date: Wed, 11 Oct 2023 15:31:01 +0300 Subject: [PATCH] [se] Fix penspPr.ln -> pen --- common/Charts/ChartsDrawer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/Charts/ChartsDrawer.js b/common/Charts/ChartsDrawer.js index b1f6bba47e..caa3f73566 100644 --- a/common/Charts/ChartsDrawer.js +++ b/common/Charts/ChartsDrawer.js @@ -16349,7 +16349,7 @@ CColorObj.prototype = if (!oSeries || !this.coordinates[i][j]) { continue; } - let pen = oSeries.trendline.spPr.ln; + let pen = oSeries.trendline.pen; if (pen && this.coordinates[i][j].path) { this.cChartDrawer.drawPath(this.coordinates[i][j].path, pen); }