# XWUIChartMap

A geographic map chart: a fixed-type wrapper around `XWUIChart` that routes to the
`map` renderer, plotting `series` (or `nodes`/`links`) over a spatial layout rather than
a standard Cartesian plane. Construct it with `(container, data, conf_comp)` where data is
`{ series, title?, nodes?, links? }`, then pick a `size` preset (`sm` / `md` /
`lg`) and a `block` (1-4) that selects a legend/grid styling variant. Use it when your
values are tied to places or regions and you want a single map-style visualization with no
per-variant wiring.

## Basic Usage

Two named series of monthly values rendered through the map chart type at the medium size
preset.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Two series fed to the map renderer via the fixed map chart type.
```

## Regional Population Density

A single value series of metro densities, shaded as a hexbin-style choropleth grid.

```example
file: examples/PopulationDensity.ts
html: examples/PopulationDensity.html
title: Regional Population Density
description: World metros tiled and shaded by inhabitants per square kilometre.
```

## Renewable Electricity Share

Grid regions shaded by their percentage of renewable electricity, with value labels on each tile.

```example
file: examples/RenewableShare.ts
html: examples/RenewableShare.html
title: Renewable Electricity Share
description: National renewable-energy share rendered as a tiled energy-mix map.
```

```api
```
