cancel
Showing results for 
Search instead for 
Did you mean: 

Dynamic cell background color in scoreboard

Former Member
0 Kudos

Hi All,

I need to set the background color of cell as per the target value.

I am getting target value in hidden cell.

for this I am using verticalScoreboard.

but in vertical scoreboard I want set the condition dynamically.

I got following code for String check

<PARAM NAME="MatchMode" VALUE="String">

<PARAM NAME="MatchColumns" VALUE="Status">

<PARAM NAME="MatchValues" VALUE="ERROR,*">

<PARAM NAME="MatchColors" VALUE="#FFCC00,#EEF6FB">

<PARAM NAME="DynamicBackground" VALUE="true">

If i want to put condition as cell value > 10 (target value) and < 20 (2*target value)

How I can use Scoreboardto set cell background color dynamically?

Or is there any other way achieve the same

Regards,

Sachin

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

ok

Former Member
0 Kudos

HI All,

got solution for same

put "number" insted of String

<PARAM NAME="MatchMode" VALUE="NUmber">

<PARAM NAME="MatchColumns" VALUE="Status">

<PARAM NAME="MatchValues" VALUE="10,*">

<PARAM NAME="MatchColors" VALUE="#FFCC00,#EEF6FB">

<PARAM NAME="DynamicBackground" VALUE="true">