Hi All, I need your assistance similar to the topic of this thread. I have a table which has two columns: - Color and Description I created the table with following SPL: - <row>
<panel>
<table>
<search>
<query>
| makeresults
|eval Color="0", Description="Color = 0"
|append
[| makeresults
eval Legend=""
|eval Color="-1", Description="Color = -1"]| append
[| makeresults |
eval Color="1", Description="Color = 1"] | table Color, Description | sort Color
</query>
</search>
<format type="color" field="Color">
<colorPalette type="map">{"0":#4FA484,"-1":#AF575A,"1":#006D9C}</colorPalette>
</format>
</table>
</panel>
</row> It gives a table with two columns, the first column has color in each cell based on the value. I need to hide the data in the first column. Thus, need your guidance related to it. Thank you
... View more