Hiyve Components - v1.0.0
    Preparing search index...

    Interface PollResultsViewerProps

    Props for the PollResultsViewer component.

    interface PollResultsViewerProps {
        colors?: Partial<PollsWindowColors>;
        labels?: Partial<PollResultsViewerLabels>;
        onClose: () => void;
        onExport?: (format: "pdf" | "json") => void;
        open: boolean;
        poll: Poll;
        styles?: Partial<PollsWindowStyles>;
        totalParticipants?: number;
    }
    Index

    Properties

    colors?: Partial<PollsWindowColors>

    Custom colors

    labels?: Partial<PollResultsViewerLabels>

    Custom labels

    onClose: () => void

    Close handler

    onExport?: (format: "pdf" | "json") => void

    Export handler

    open: boolean

    Whether dialog is open

    poll: Poll

    Poll to view

    styles?: Partial<PollsWindowStyles>

    Custom styles

    totalParticipants?: number

    Total participants in room (for participation rate)