fix(图表-矩形树图): 修复提示开启其他字段导致图表无法显示的问题

This commit is contained in:
jianneng-fit2cloud 2024-09-03 12:51:59 +08:00
parent dac355bd90
commit 83e1dfaec5

View File

@ -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";
}