# XWUIChartColumn

A column chart: a fixed-type wrapper around `XWUIChart` that draws one vertical bar
per category so values are easy to compare by height; it is the vertical sibling of
the bar chart. Pass `series` of `{ x, y }` data plus a `block` preset (1-4) and `size`
(`sm` / `md` / `lg`); the shared block config also exposes legend, grid,
axis, data-label, and tooltip-formatter toggles. Use it to compare a value across a
handful of discrete categories.

## Basic Usage

Two monthly `{ x, y }` series fed to the column renderer at the md size preset,
drawing grouped vertical bars per month.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Two {x, y} series rendered as grouped vertical columns.
```

## Website Traffic

A single series of monthly visitor counts drawn as one labelled column per month.

```example
file: examples/WebsiteTraffic.ts
html: examples/WebsiteTraffic.html
title: Website Traffic
description: Monthly unique visitors as a single labelled column per month with a value axis.
```

## Renewable Energy Mix

One column per energy source comparing each source's share of generation.

```example
file: examples/RenewableMix.ts
html: examples/RenewableMix.html
title: Renewable Energy Mix
description: Electricity generation share per renewable source drawn as one labelled column each.
```

```api
```
