Merge pull request #11946 from dataease/pr@dev-v2@chart-treemap-tooltip-fix

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

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