Merge pull request #11944 from dataease/pr@dev-v2@chart-pie-donut-rose-fix

fix(图表-玫瑰环形图): 修复提示开启其他字段导致图表无法显示的问题
This commit is contained in:
jianneng-fit2cloud 2024-09-03 12:39:10 +08:00 committed by GitHub
commit ee595538c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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