How does Preset.io work + building a hierarchy table and interactive calendar chart? #41973
Replies: 1 comment
-
|
Hey @FrancescoCastaldi, I can help with the Superset-specific questions (2 and 3). For question 1 about Preset.io's pricing, versioning, and vendor lock-in specifics, that's outside this project's scope — you'd need to check preset.io directly. 2. Hierarchy / Matrix Table Good news — Pivot Table v2 does support hierarchical expand/collapse behavior similar to Power BI's matrix visual. The plugin maintains Beyond basic expand/collapse, the Pivot Table v2 also supports:
So the Pivot Table v2 should cover your Power BI matrix-style use case. Just add multiple columns to your "Rows" control in the order of your hierarchy (Region → Country → City → Store). 3. Interactive Calendar Chart The legacy calendar plugin (
There is no ECharts-based calendar chart in Superset currently, and I couldn't find evidence of SIP-113 being actively pursued. The ECharts library does support a calendar coordinate system, so building a custom plugin is feasible. To build a custom interactive calendar chart plugin, you'd follow the standard ECharts plugin structure [8]:
There's a detailed step-by-step example of creating a custom ECharts plugin that walks through this exact process [9]. The official docs also cover plugin creation: Creating Visualization Plugins. Hope this helps point you in the right direction! To reply, just mention @dosu. Docs are dead. Just use Dosu. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi Superset community,
I'm exploring Apache Superset and I have a few questions I hope you can help me with:
1. How does Preset.io work exactly?
I understand that Preset.io is a managed/cloud version of Apache Superset. But I'd love to understand more concretely:
2. Hierarchy / Matrix Table (like Power BI Matrix)
I need a table visualization that supports hierarchical rows ? similar to Power BI's matrix visual where you can have multiple levels of grouping in the first column that can be expanded/collapsed (drill down/up). For example:
Region (expandable) ??? Country ? ??? City ? ? ??? StoreI found discussion #30517 about this, but it wasn't fully addressed. Does Superset's Pivot Table v2 support this kind of hierarchical expand/collapse behavior? Are there any custom plugins or workarounds?
3. Interactive Calendar Chart / Calendar Heatmap
I also need an interactive calendar chart (like a calendar heatmap ? GitHub contribution graph style) where you can:
I know there is @superset-ui/legacy-plugin-chart-calendar and there was a discussion about SIP-113 for improvements. What's the current status of this? Is there a more modern ECharts-based replacement being developed? And how would I go about building a custom interactive calendar chart plugin if none exists yet?
Any guidance, pointers to existing work, or experiences would be greatly appreciated!
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions