无法在Power BI中设置“格式化数据颜色”选项

时间:2016-12-23 20:46:49

标签: node.js typescript powerbi powerbi-embedded

在我的自定义Power BI代码中,我使用了数据颜色'选项。我正在推动数据点进一步使用,如下所示:

this.dataPoints.push({
    category: String(categories.values[index]),
    value: Number(dataValues.values[index]),
    color: getCategoricalObjectValue<Fill>(categories, index, 'colorSelector', 'fill', defaultColor).solid.color,
    selectionId: this.host.createSelectionIdBuilder().withCategory(categories, index).createSelectionId()
})

我使用了包含getCategoricalObjectValue函数定义的帮助文件。功能的定义如下所示:

export function getCategoricalObjectValue<T>(category: DataViewCategoryColumn, index: number, objectName: string, propertyName: string, defaultValue: T): T {
    let categoryObjects = category.objects;

    if (categoryObjects) {
        let categoryObject: DataViewObject = categoryObjects[index];
        if (categoryObject) {
            let object = categoryObject[objectName];
            if (object) {
                let property: T = object[propertyName];
                if (property !== undefined) {
                    return property;
                }
            }
        }
    }
    return defaultValue;
}

我面临getCategoricalObjectValue函数的问题,category.objects始终未定义,无论何时从格式菜单更改颜色。

我需要帮助来解决上述问题。我使用的所有代码都基于条形图{/ 3}上给出的示例

1 个答案:

答案 0 :(得分:0)

问题在于现有的代码已被弃用或最近的实现发生了变化。

解决方案在以下链接中给出: https://github.com/Microsoft/PowerBI-visuals-sampleBarChart/issues/5