Embedded analytics SDK API
    Preparing search index...

    Interface CreateDashboardModalProps

    interface CreateDashboardModalProps {
        initialCollectionId?: SdkCollectionId;
        isOpen?: boolean;
        onClose?: () => void;
        onCreate: (dashboard: MetabaseDashboard) => void;
    }
    Index

    Properties

    initialCollectionId?: SdkCollectionId

    Initial collection in which to create a dashboard. You can use predefined system values like root or personal.

    isOpen?: boolean

    Whether the modal is open or not.

    onClose?: () => void

    Handler to close modal component

    onCreate: (dashboard: MetabaseDashboard) => void

    Handler to react on dashboard creation.