MAIDR JavaScript API
    Preparing search index...

    Interface PowerBIRoleNames

    The data role names the adapter looks fields up by.

    They are the names of the dataRoles in the visual's capabilities.json. The defaults match the roles most Power BI samples declare; a visual whose roles are named differently maps them here.

    interface PowerBIRoleNames {
        category?: string;
        series?: string;
        measure?: string;
        x?: string;
        y?: string;
    }
    Index

    Properties

    category?: string

    The axis / category grouping. Default category.

    series?: string

    The legend / series grouping. Default series.

    measure?: string

    The value measure(s). Default measure.

    x?: string

    A scatter's horizontal measure. Default x.

    y?: string

    A scatter's vertical measure. Default y.