Forum Discussion
nicksav
9 years agoHelper II
Applying colors for Table. Custom Visual
Guys, I am struggaling here to get the colors working and I would like to understand the flow in the code for Sample Bar Chart. So, there is a function to show properties on UI, called enumerateO...
v-chuncz-msft
9 years agoCommunity Support
To get a better understanding of its workflow, you could add console.log() in .ts files to output a message to the Web Console.
constructor(options: VisualConstructorOptions) {
console.log("options:", options);Ernesto
8 years agoAdvocate I
The way "the link" between objects and categories happen is when you enumerate the objects in enumerateObjectInstance, by using the selector. The list of all objects wont be in metadata but in the category object within categories.
This helped https://github.com/Microsoft/PowerBI-visuals/blob/master/Tutorial/DataBoundObjects.md
Hope this helps.