From fb1df7ae7a8752a5ba38dd25e8b705a7970b5955 Mon Sep 17 00:00:00 2001 From: ulleo Date: Fri, 20 Sep 2024 15:30:40 +0800 Subject: [PATCH] =?UTF-8?q?pref(=E5=9B=BE=E8=A1=A8):=20=E5=8F=8C=E8=BD=B4?= =?UTF-8?q?=E5=9B=BE=E6=8A=98=E7=BA=BF=E7=B1=BB=E5=9E=8B=E7=9A=84=E6=8A=98?= =?UTF-8?q?=E7=82=B9=E6=8F=8F=E8=BE=B9=E9=A2=9C=E8=89=B2=E8=B7=9F=E9=9A=8F?= =?UTF-8?q?=E9=80=8F=E6=98=8E=E5=BA=A6=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/js/panel/charts/others/chart-mix.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/others/chart-mix.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/others/chart-mix.ts index 35cf1d3983..3dd572875a 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/charts/others/chart-mix.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/charts/others/chart-mix.ts @@ -240,7 +240,10 @@ export class ColumnLineMix extends G2PlotChartView { const smooth = s.lineSmooth const point = { size: s.lineSymbolSize, - shape: s.lineSymbol + shape: s.lineSymbol, + style: { + stroke: hexColorToRGBA('#FFFFFF', s.subAlpha) + } } const lineStyle = { lineWidth: s.lineWidth @@ -248,7 +251,10 @@ export class ColumnLineMix extends G2PlotChartView { const leftSmooth = s.leftLineSmooth const leftPoint = { size: s.leftLineSymbolSize, - shape: s.leftLineSymbol + shape: s.leftLineSymbol, + style: { + stroke: hexColorToRGBA('#FFFFFF', s.alpha) + } } const leftLineStyle = { lineWidth: s.leftLineWidth