Berserk Docs
ExploreView Modes

Barchart

Bar chart for categorical comparisons

The Barchart view renders results as horizontal bars — one per row. Best for comparing values across categories.

Barchart view showing horizontal bars comparing values

Try it

datatable(service:string, error_count:long) [
  "api-gateway", 142,
  "auth-service", 87,
  "user-service", 53,
  "payment-service", 31,
  "notification-service", 12
]
| order by error_count desc
| render barchart

Features

  • Categorical axis — the first string column becomes the category axis
  • Multiple values — additional numeric columns render as grouped bars
  • Tooltips — hover over bars to see exact values
  • Auto-render — use | render barchart to switch to this view automatically

See Visualizations for render options like title and ytitle.

On this page