Dashboard UI configuration passed to the Superset Embedded SDK.
Embed identifier generated by the Superset embedding UI.
Additional iframe sandbox permissions.
Called by the element when Superset needs a guest token.
Referrer policy applied to the embedded iframe request.
Superset instance URL, including protocol.
<drayman-superset />
Apache Superset dashboard integration element powered by the Superset Embedded SDK.
Example of usage
export const component: DraymanComponent = async ({ forceUpdate }) => { return () => { const dashboardUiConfig = { hideTitle: true, hideTab: true, hideChartControls: false, filters: { visible: true, expanded: false, }, }; return ( <drayman-superset supersetDomain="http://superset" embedId="01879ce0-6016-4332-b535-f5f1950f9364" onFetchGuestToken={async () => { return `token`; }} dashboardUiConfig={dashboardUiConfig} /> ); } }