I have tried to color each bar of the bar chart differently in the following query but didn't got any answers which could be satisfactory to quench my question.
`
index=some_value summ_type=some_value
| stats dc(state) as "STATE" by IDMODEL
| sort -"STATE"
| table "STATE", IDMODEL
| rename "IDMODEL" as "MODEL ID"
| head 10
`
I have tried the following solution available online but didn't get desired result.
`
`
↧