Vertical bar chart

This topic contains an example of a vertical bar chart.

The following example uses a zero GROUP BY statement with three metrics:

RETURN YearlyAverages AS SELECT 
    AVG("Product MSRP ($)") AS "Avg MSRP",
    AVG("Product Avg National Sales Price ($)") AS "Avg National Sales Price",
    AVG("Unit Sale Price ($)") AS "Avg Sales Price"
GROUP

It produces a vertical bar chart displaying “Avg MSRP”, “Avg National Sales Price” and “Avg Sales Price” metrics: