I am using the line
<option name="charting.fieldColors">{"SUCCESS": 0x00FF00, "FAIL":0xFF0000}</option>
with no problems, however when I use
<option name="charting.fieldColors">{"OK": 0x00FF00}</option>
in a seperate graph it has problem, because the values that are not "OK" are is grouped into others().
If I put other value from 0.01 to 0 in XML, it fixes it, however I want the other to be there.
How can I have other and have the OK field be green?
... View more