Rotated Bars



    PLOT ROTATEDBARCHART
        AXISLABELS, LIGHT RED BAR
      WITH
        NO SIDES
        NO XAXIS
        NO LABELS X
        NO TICKS X
    SELECT
        CONCAT(application_area, ' - ', count(*)),
          count(*)
        FROM lead_capture
        GROUP BY application_area
        ORDER BY count(*) DESC;

Rotated Bar Charts are useful for displaying long axis labels like the ones above. (This is chart is part of a report we make from the data collected by a download form, though the data above is ficitionalized)

They support the Bar Chart settings, so you can display mutliple bars, change bar widths, and so on.

Comments are closed.