@finos/perspective-react
    Preparing search index...

    Interface PerspectiveViewerProps

    interface PerspectiveViewerProps {
        className?: string;
        config?: ViewerConfigUpdate;
        hidden?: boolean;
        id?: string;
        onClick?: (data: PerspectiveClickEventDetail) => void;
        onConfigUpdate?: (config: ViewerConfigUpdate) => void;
        onSelect?: (data: PerspectiveSelectEventDetail) => void;
        slot?: string;
        style?: CSSProperties;
        tabIndex?: number;
        table?: Table | Promise<Table>;
        title?: string;
    }
    Index

    Properties

    className?: string
    config?: ViewerConfigUpdate
    hidden?: boolean
    id?: string
    onClick?: (data: PerspectiveClickEventDetail) => void
    onConfigUpdate?: (config: ViewerConfigUpdate) => void
    onSelect?: (data: PerspectiveSelectEventDetail) => void
    slot?: string
    style?: CSSProperties
    tabIndex?: number
    table?: Table | Promise<Table>
    title?: string