...
Name | Description |
---|
SQL Query | SQL Query to produce the dataset required for the graph type. Info |
---|
The first column in the dataset will be assumed for X-axis/label. |
Example 1: Code Block |
---|
| SELECT c_status as 'status', COUNT(c_status) as 'count' FROM app_fd_tix_tickets WHERE c_status IS NOT NULL GROUP BY c_status |
Example 2: Code Block |
---|
| select c.c_claimant, sum( cast( replace(c.c_total,'$', '') as decimal(10,2)) ) as 'total', avg( cast( replace(c.c_total,'$', '') as decimal(10,2)) ) as 'avg' from app_fd_hr_expense_claim c group by c.c_claimant
|
Image Added Image Added |
Figure 4: SQL Chart Properties - UI
...