This is the example of lack of “mundane” functionality that is scaring me by now.
How do I build charts?
- Plot a line chart of the “issues count” (Y), series by “issue type”, grouped by “[day | week | month]” (X)
@groupby should be able to group things:
- @groupby(company_name)
- @groupby(DATE(_create_datetime))
- @groupby(MONTH(_create_datetime))
- @groupby(YEAR(_create_datetime))
-
@groupby(TIME(_create_datetime))
etc…
groupby, cascade and normalize NEEDs attention.
Its looking to me like a super potent and fast car with a bad driving system.