feat: Adds the ECharts Heatmap chart (#25353)

This commit is contained in:
Michael S. Molina
2024-03-28 16:16:17 -03:00
committed by GitHub
parent d69a1870a0
commit 546d48adbb
23 changed files with 929 additions and 24 deletions

View File

@@ -28,6 +28,7 @@ from superset.utils.pandas_postprocessing.geography import (
)
from superset.utils.pandas_postprocessing.pivot import pivot
from superset.utils.pandas_postprocessing.prophet import prophet
from superset.utils.pandas_postprocessing.rank import rank
from superset.utils.pandas_postprocessing.rename import rename
from superset.utils.pandas_postprocessing.resample import resample
from superset.utils.pandas_postprocessing.rolling import rolling
@@ -50,6 +51,7 @@ __all__ = [
"geodetic_parse",
"pivot",
"prophet",
"rank",
"rename",
"resample",
"rolling",