From 3f2826253bfb5c083eb1d7b6aaf774747df0dc4e Mon Sep 17 00:00:00 2001 From: jianneng-fit2cloud Date: Tue, 3 Sep 2024 12:38:31 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8-=E7=8E=AB=E7=91=B0?= =?UTF-8?q?=E7=8E=AF=E5=BD=A2=E5=9B=BE):=20=E4=BF=AE=E5=A4=8D=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E5=BC=80=E5=90=AF=E5=85=B6=E4=BB=96=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E5=AF=BC=E8=87=B4=E5=9B=BE=E8=A1=A8=E6=97=A0=E6=B3=95=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/io/dataease/chart/charts/impl/pie/PieHandler.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/core-backend/src/main/java/io/dataease/chart/charts/impl/pie/PieHandler.java b/core/core-backend/src/main/java/io/dataease/chart/charts/impl/pie/PieHandler.java index b72db58f6b..c859f4c8fd 100644 --- a/core/core-backend/src/main/java/io/dataease/chart/charts/impl/pie/PieHandler.java +++ b/core/core-backend/src/main/java/io/dataease/chart/charts/impl/pie/PieHandler.java @@ -1,7 +1,5 @@ package io.dataease.chart.charts.impl.pie; -import io.dataease.chart.charts.impl.DefaultChartHandler; -import io.dataease.chart.charts.impl.ExtQuotaChartHandler; import io.dataease.chart.charts.impl.YoyChartHandler; import io.dataease.extensions.view.dto.AxisFormatResult; import io.dataease.extensions.view.dto.ChartAxis; @@ -15,7 +13,7 @@ public class PieHandler extends YoyChartHandler { chartHandlerManager.registerChartHandler(this.getRender(), "pie", this); chartHandlerManager.registerChartHandler(this.getRender(), "pie-rose", this); chartHandlerManager.registerChartHandler(this.getRender(), "pie-donut", this); - chartHandlerManager.registerChartHandler(this.getRender(), "pie-rose-donut", this); + chartHandlerManager.registerChartHandler(this.getRender(), "pie-donut-rose", this); } @Override