MAIDR JavaScript API
    Preparing search index...

    Interface PowerBIDataView

    What a custom visual receives in options.dataViews[0] (powerbi.DataView).

    The adapter reads categorical when it is present and falls back to table; single and matrix mappings are not read.

    interface PowerBIDataView {
        metadata?: { columns?: readonly PowerBIMetadataColumn[] };
        categorical?: PowerBICategorical;
        table?: PowerBITable;
    }
    Index

    Properties

    metadata?: { columns?: readonly PowerBIMetadataColumn[] }
    categorical?: PowerBICategorical
    table?: PowerBITable