From 52ab0796b4881c01381957788c3c2270320810ed Mon Sep 17 00:00:00 2001 From: ulleo Date: Tue, 24 Sep 2024 14:40:25 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E6=A1=91=E5=9F=BA=E5=9B=BE=E7=9B=AE=E7=9A=84=E7=BB=B4=E5=BA=A6?= =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89=E6=8E=92=E5=BA=8F=E9=80=89=E9=A1=B9?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E9=94=99=E8=AF=AF=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #12330 --- .../main/java/io/dataease/chart/manage/ChartDataManage.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/core-backend/src/main/java/io/dataease/chart/manage/ChartDataManage.java b/core/core-backend/src/main/java/io/dataease/chart/manage/ChartDataManage.java index 29938ca456..86e443aa9d 100644 --- a/core/core-backend/src/main/java/io/dataease/chart/manage/ChartDataManage.java +++ b/core/core-backend/src/main/java/io/dataease/chart/manage/ChartDataManage.java @@ -625,7 +625,9 @@ public class ChartDataManage { || StringUtils.containsIgnoreCase(view.getType(), "group") || ("antv".equalsIgnoreCase(view.getRender()) && "line".equalsIgnoreCase(view.getType())) || StringUtils.equalsIgnoreCase(view.getType(), "flow-map") - || StringUtils.equalsIgnoreCase(view.getType(), "t-heatmap")) { + || StringUtils.equalsIgnoreCase(view.getType(), "t-heatmap") + || StringUtils.equalsIgnoreCase(view.getType(), "sankey") + ) { xAxis.addAll(xAxisExt); } List yAxis = new ArrayList<>(view.getYAxis());