Real-time Survey Tool Documentation
    Preparing search index...

    Interface DisplayDataItem

    Represents a data item for display purposes in charts or lists. It combines properties from FreeTextAnswerResult and ChoiceAnswerResult.

    interface DisplayDataItem {
        count: number;
        id?: number;
        is_hidden?: boolean;
        is_picked?: boolean;
        name: string;
        option?: string;
        text?: string;
    }
    Index

    Properties

    count: number
    id?: number
    is_hidden?: boolean
    is_picked?: boolean
    name: string
    option?: string
    text?: string