I have counts of aging tickets which we have divided into different ranges .But I want to show it as chart which will be divided into ticket types.
eval age=(now() - strptime(time_submitted,"%d/%m/%y %H:%M:%S"))/86400, total_age=round(age,0)| table total_age|rangemap field=total_age 0-7=0-7 8-15=8-15 16-30=16-30 | stats count by range| sort by range|
I want to add chart over range by ticket_type after this
... View more