Forum Discussion
Color Picker selection not persisting when apply setting for "ALL" is selected .
- 3 months ago
Hi Daniel29195 ,
To put it simply, the color you choose for All does get applied to all series, but the color picker doesn't show or remember that selection. So, while it seems like it's not saved, it actually is, this is just a limitation of the UI, not an issue with your custom visual.Because this is a UI limitation and everything is functioning correctly, it would be a good idea to share this in the Ideas Forum mentioned below for visibility and possible improvements in future updates.
Fabric Ideas - Microsoft Fabric Community
Best Regards,
Community Support Team - 3 months ago
Hi Daniel29195 ,
In custom visuals, formatting properties are defined in the capabilities model. A property can be configured as an enumeration (dropdown) or can be bound to a field/measure for conditional formatting (fx), and the formatting pane renders these based on how the property is defined.
Because of this, the typical approach is to use either a dropdown for fixed options (such as blink or pulse) or a field/measure to drive the behavior dynamically, depending on the requirement.
Refer this docs -
https://learn.microsoft.com/power-bi/developer/visuals/capabilities
https://learn.microsoft.com/en-us/power-bi/developer/visuals/utils-formatting-model
https://learn.microsoft.com/power-bi/create-reports/desktop-conditional-table-formattingBest Regards,
Community Support Team
for the first part, correct 100% . i mean i can live with that bug, but my OCD can't hahaha.
for the second part , i didnt get what you mean, from my side ( in the custom visual im building ), when i change the color for the ALL, the color picker related to ALL is not persistent , however the other series are able to see the change and takes it as their new default .
Hi Daniel29195 ,
To put it simply, the color you choose for All does get applied to all series, but the color picker doesn't show or remember that selection. So, while it seems like it's not saved, it actually is, this is just a limitation of the UI, not an issue with your custom visual.
Because this is a UI limitation and everything is functioning correctly, it would be a good idea to share this in the Ideas Forum mentioned below for visibility and possible improvements in future updates.
Fabric Ideas - Microsoft Fabric Community
Best Regards,
Community Support Team
- Daniel291953 months agoCommunity Champion
thanks for the clarification . v-menakakota
although i have another question,
im trying to build a settings per measure.
i want to add an fx for animation mode . so i would have per each measure a dropdown that the user can select an animation ( blink, pulse..// ), and and fx near the dropdown . is it possible to have such a thing ? to bind fx with dropdown ?
because in built in power bi native visuals, you can ( check image 2 )
- v-menakakota3 months agoCommunity Support
Hi Daniel29195 ,
In custom visuals, formatting properties are defined in the capabilities model. A property can be configured as an enumeration (dropdown) or can be bound to a field/measure for conditional formatting (fx), and the formatting pane renders these based on how the property is defined.
Because of this, the typical approach is to use either a dropdown for fixed options (such as blink or pulse) or a field/measure to drive the behavior dynamically, depending on the requirement.
Refer this docs -
https://learn.microsoft.com/power-bi/developer/visuals/capabilities
https://learn.microsoft.com/en-us/power-bi/developer/visuals/utils-formatting-model
https://learn.microsoft.com/power-bi/create-reports/desktop-conditional-table-formattingBest Regards,
Community Support Team- Daniel291953 months agoCommunity Champion
Thats what i did , i went with field/ measure
i was jusr curious about the fx for such thing cause it is cleaner that adding alot of fields .
thanks again v-menakakota