Hi ,
I know there are charting option colors for a dashboard as mentioned below, but do we have same for single value and table panels?
My code is below for a single value in a panel:
<panel >
<single>
<title>Top Features</title>
<search>
<query>host = abc source="/access.log" "/esponseprocess_client_ep" | stats count</query>
<earliest>$field1.earliest$</earliest>
<latest>$field1.latest$</latest>
</search>
<!-- <option name="underLabel">Point Of Interest</option>-->
<option name="linkView">search</option>
<option name="drilldown">none</option>
</single>
</panel>
Charting options:
<!-- Set background color -->
<option name="charting.backgroundColor">#475565</option>
<!-- Set foreground color -->
<option name="charting.foregroundColor">#EBF5FF</option>
<!-- Set font color (axis labels, legends) -->
<option name="charting.fontColor">#99CCFF</option>
<!-- Set seriesColors (color palette to be used in this order) -->
<option name="charting.seriesColors">[0xEBF0F5,0xC2D1E0,0x99B2CC,0x7094B8,0x4775A3,0x2E5C8A,0x24476B,0x1A334C,0x0F1F2E,0x050A0F]</option>
... View more