*field A is something's value, and B is its "standard deviation"
If I make a table chart like this, and want to change this form to "single value", it will came out like this.
The problem is setting the colors.
I want to make colors like this.
If field "B" is from 0 to 10, the values(field A) getting Green color.
If field "B" is from 10 to 20 the values(field A) getting Green yellow.
If field "B" is from 20 to 30, the values(field A) getting Orange.
If field "B" is from 30 to 40, the values(field A) getting Red.
But when I tried to use "single value" option, the "color option's values" are following "field A's value"
I wondering if changing Dashboard Source, make it possible to change color by field B.
<panel>
<single>
<title>EXAMPLE</title>
<search base="test">
<query>|example </query>
</search>
<option name="colorBy">value</option>
<option name="drilldown">all</option>
<option name="numberPrecision">0</option>
<option name="rangeValues">[0,10,25,40]</option>
<option name="trendDisplayMode">percent</option>
<option name="trendInterval">-5m</option>
<option name="unit">count</option>
<option name="useColors">1</option>
</single>
</panel>
This is single value's option at Dashboard Source.
So, can it be possible to change color like this way?
... View more