From 85b50142a72ffbd2d065adddd23bf854de746fcf Mon Sep 17 00:00:00 2001 From: jianneng-fit2cloud Date: Thu, 28 May 2026 14:15:05 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E5=9F=BA=E7=A1=80=E3=80=81=E5=A0=86=E5=8F=A0=E6=8A=98=E7=BA=BF?= =?UTF-8?q?=E5=9B=BE=E4=BB=A5=E5=8F=8A=E9=9D=A2=E7=A7=AF=E5=9B=BE=E7=A1=AE?= =?UTF-8?q?=E4=BF=9D=E6=A0=87=E7=AD=BE=E5=9C=A8=E5=9B=BE=E8=A1=A8=E4=B8=AD?= =?UTF-8?q?=E6=B8=85=E6=99=B0=E5=8F=AF=E8=A7=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/chart/components/js/panel/charts/g2/line/area.ts | 2 ++ .../src/views/chart/components/js/panel/charts/g2/line/line.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/line/area.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/line/area.ts index 12910e41aa..6acaf08342 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/line/area.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/line/area.ts @@ -390,6 +390,7 @@ export class Area extends G2ChartView { lineLineDash, label: xAxis.axisLabel.show, labelFill: xAxis.axisLabel.color, + labelOpacity: 1, labelFillOpacity: 1, labelFontSize: xAxis.axisLabel.fontSize, tick: xAxis.axisLabel.show, @@ -443,6 +444,7 @@ export class Area extends G2ChartView { lineLineDash, label: yAxis.axisLabel.show, labelFill: yAxis.axisLabel.color, + labelOpacity: 1, labelFillOpacity: 1, labelFontSize: yAxis.axisLabel.fontSize, tick: false, diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/line/line.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/line/line.ts index 235a5a051a..69da45002c 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/line/line.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/line/line.ts @@ -374,6 +374,7 @@ export class Line extends G2ChartView { lineLineDash, label: xAxis.axisLabel.show, labelFill: xAxis.axisLabel.color, + labelOpacity: 1, labelFillOpacity: 1, labelFontSize: xAxis.axisLabel.fontSize, grid: xAxis.splitLine.show, @@ -426,6 +427,7 @@ export class Line extends G2ChartView { lineLineDash, label: yAxis.axisLabel.show, labelFill: yAxis.axisLabel.color, + labelOpacity: 1, labelFillOpacity: 1, labelFontSize: yAxis.axisLabel.fontSize, grid: yAxis.splitLine.show,