From 8a6d9f590ea6e932bb220f1dd6cfcf40a3882855 Mon Sep 17 00:00:00 2001 From: jianneng-fit2cloud Date: Thu, 18 Sep 2025 13:57:54 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=9B=BE=E8=A1=A8):=20=E6=9F=B1=E6=9D=A1?= =?UTF-8?q?=E5=9B=BE=E6=94=AF=E6=8C=81=E7=BC=A9=E7=95=A5=E8=BD=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../chart/components/js/panel/charts/g2/bar/group-bar.ts | 3 ++- .../components/js/panel/charts/g2/bar/group-stack-bar.ts | 3 ++- .../components/js/panel/charts/g2/bar/horizontal-bar.ts | 3 ++- .../js/panel/charts/g2/bar/percentage-stack-bar.ts | 3 ++- .../panel/charts/g2/bar/percentage-stack-horizontal-bar.ts | 5 +++-- .../chart/components/js/panel/charts/g2/bar/stack-bar.ts | 3 ++- .../js/panel/charts/g2/bar/stack-horizontal-bar.ts | 3 ++- 7 files changed, 15 insertions(+), 8 deletions(-) diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/group-bar.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/group-bar.ts index 26475cc1ed..fd016362b8 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/group-bar.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/group-bar.ts @@ -119,7 +119,8 @@ export class GroupBar extends StackBar { this.configXAxis, this.configYAxis, this.configAnalyse, - this.configBarConditions + this.configBarConditions, + this.configSlider )(chart, options, {}, this) } diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/group-stack-bar.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/group-stack-bar.ts index 3af5b07343..0164c5bf33 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/group-stack-bar.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/group-stack-bar.ts @@ -139,7 +139,8 @@ export class GroupStackBar extends StackBar { this.configXAxis, this.configYAxis, this.configAnalyse, - this.configBarConditions + this.configBarConditions, + this.configSlider )(chart, options, {}, this) } diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/horizontal-bar.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/horizontal-bar.ts index 32aa56b75a..da518ff1d0 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/horizontal-bar.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/horizontal-bar.ts @@ -222,7 +222,8 @@ export class HorizontalBar extends Bar { this.configXAxis, this.configYAxis, this.configAnalyse, - this.configBarConditions + this.configBarConditions, + this.configSlider )(chart, options, {}, this) } diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/percentage-stack-bar.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/percentage-stack-bar.ts index c52f8c3950..d2ce328ee6 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/percentage-stack-bar.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/percentage-stack-bar.ts @@ -152,7 +152,8 @@ export class PercentageStackBar extends GroupStackBar { this.configXAxis, this.configYAxis, this.configAnalyse, - this.configBarConditions + this.configBarConditions, + this.configSlider )(chart, options, {}, this) } diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/percentage-stack-horizontal-bar.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/percentage-stack-horizontal-bar.ts index e010e47339..80870784d2 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/percentage-stack-horizontal-bar.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/percentage-stack-horizontal-bar.ts @@ -13,7 +13,7 @@ import { isEmpty } from 'lodash-es' import { HorizontalStackBar } from '@/views/chart/components/js/panel/charts/g2/bar/stack-horizontal-bar' /** - * 百分比堆叠柱状图 + * 百分比条形图 */ export class PercentageStackBar extends HorizontalStackBar { propertyInner = { @@ -140,7 +140,8 @@ export class PercentageStackBar extends HorizontalStackBar { this.configLegend, this.configXAxis, this.configYAxis, - this.configAnalyse + this.configAnalyse, + this.configSlider )(chart, options, {}, this) } diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/stack-bar.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/stack-bar.ts index f7da37ad63..9a1f39a486 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/stack-bar.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/stack-bar.ts @@ -222,7 +222,8 @@ export class StackBar extends Bar { this.configLegend, this.configXAxis, this.configYAxis, - this.configAnalyse + this.configAnalyse, + this.configSlider )(chart, options, {}, this) } diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/stack-horizontal-bar.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/stack-horizontal-bar.ts index a57f2238e3..c61155d47e 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/stack-horizontal-bar.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/charts/g2/bar/stack-horizontal-bar.ts @@ -132,7 +132,8 @@ export class HorizontalStackBar extends HorizontalBar { this.configLegend, this.configXAxis, this.configYAxis, - this.configAnalyse + this.configAnalyse, + this.configSlider )(chart, options, {}, this) }