How do I order the horizontal slices in a stacked timechart by value?
The working search string looks like this:
timechart count by author.name limit=0
The data is coming from git commit records. Each record is labelled by author.name. The search string tallies the count of records for every author over a year and produces a nice stacked bar chart, one bar per month with every user's count stacked up in the bar.
However the stack is ordered alphabetically by author.name. How do I order it by count, lowest to highest top to bottom?
↧