Modify ↓
Opened 11 years ago
Closed 11 years ago
#11256 closed defect (invalid)
Chart is empty
Reported by: | Dan Harlacher | Owned by: | aviram |
---|---|---|---|
Priority: | normal | Component: | TicketChartsMacro |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 1.0 |
Description
I have a chart that doesn't show any results and I can't figure out why. First here is an example that does work for me.
[[TicketChart(type = stacked_bars, key = type, x_axis = owner, query = status="accepted|assigned|new|reopened", title = Open Tickets by Owner, height = 600, width = 1200)]]
This yields this chart, showing me open tickets per owner, stacked by type.
Then when I try basically the same markup but looking for open tickets by product stacked by milestone and I get an empty chart.
[[TicketChart(type = stacked_bars, key = milestone, x_axis = product, query = type="Bug"&status="accepted|assigned|new|reopened", title = Bugs by Product and Milestone, height = 400, width = 900)]]
When I run this query manually I get lots of results. I have tried removing the status from the query and it doesn't change anything.
Attachments (1)
Change History (2)
Changed 11 years ago by
Attachment: | ticketsbyowner.png added |
---|
comment:1 Changed 11 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Oops, my bad. I removed the quotes from my query and they started to work properly.