cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Dynamic Conditional formatting is not working

Former Member
0 Likes
2,066

I am using lumira designer and lumira discovery for data visualisation,

I have a KPI that I want to set its color formatting dynamically ( from user ) so I am using Conditional formatting table and pop it up for the user using this line of code :

CHART_5.setConditionalFormattingVisible(true);
but when it pops up to the user , added rules are not applied to the text!! and not saved.
I want to know also how to set the table for a certain datastore, because it shows all the measures and dimensions of all the charts I have been using.

thanks.

View Entire Topic
MustafaBensan
SAP Champion
SAP Champion
0 Likes

In order to apply the Conditional Format Settings dialogue to a chart at run-time you need to include the chart as a parameter, as shown below:

CONDITIONAL_FORMATTING_SETTINGS.openRulesDialog(CHART_5);
Former Member
0 Likes

great, thank you!