From 83e1dfaec50ea3f05164df6cddc74b9035d19521 Mon Sep 17 00:00:00 2001 From: jianneng-fit2cloud Date: Tue, 3 Sep 2024 12:51:59 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8-=E7=9F=A9=E5=BD=A2?= =?UTF-8?q?=E6=A0=91=E5=9B=BE):=20=E4=BF=AE=E5=A4=8D=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E5=BC=80=E5=90=AF=E5=85=B6=E4=BB=96=E5=AD=97=E6=AE=B5=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E5=9B=BE=E8=A1=A8=E6=97=A0=E6=B3=95=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../chart/charts/impl/others/TreemapHandler.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 core/core-backend/src/main/java/io/dataease/chart/charts/impl/others/TreemapHandler.java diff --git a/core/core-backend/src/main/java/io/dataease/chart/charts/impl/others/TreemapHandler.java b/core/core-backend/src/main/java/io/dataease/chart/charts/impl/others/TreemapHandler.java new file mode 100644 index 0000000000..4513004e82 --- /dev/null +++ b/core/core-backend/src/main/java/io/dataease/chart/charts/impl/others/TreemapHandler.java @@ -0,0 +1,11 @@ +package io.dataease.chart.charts.impl.others; + +import io.dataease.chart.charts.impl.ExtQuotaChartHandler; +import lombok.Getter; +import org.springframework.stereotype.Component; + +@Component +public class TreemapHandler extends ExtQuotaChartHandler { + @Getter + private String type = "treemap"; +}