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) }