Hi folks ,
I wanted to change the color of each bar in a bar chart ,the field value of these bar charts are not legends . I see the coloring will work only for the legends or with some threshold value. I have count as my legend for now. Please suggest how can i achieve this.
Thanks in advance
Hi
Check this sample, if it does not help share your query
<dashboard>
<label>chart</label>
<row>
<panel>
<chart>
<search>
<query>index=_internal
| stats count by sourcetype
| transpose 0 header_field=sourcetype |fields - column</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
<option name="charting.chart">bar</option>
<option name="charting.drilldown">none</option>
</chart>
</panel>
</row>
</dashboard>