# XWUIChartFacetedDistributions

A faceted-distributions chart: a fixed-type (`facetedDistributions`) wrapper around `XWUIChart` that
draws each series as its own small distribution panel so you can compare shapes side by side without
overlap. Pass `series` of `{ name, data: [{ x, y }] }` plus an optional `block` preset (1-4) and
`size` (`sm` / `md` / `lg`); the shared block config also exposes legend, grid, axis, and
tooltip-formatter toggles. Use it when several groups each have a distribution and overlaying them
would be unreadable.

## Basic Usage

Two named series of monthly values rendered as separate distribution facets at the medium size
preset.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Two monthly series shown as side-by-side faceted distribution panels.
```

## Score Distribution by Cohort

Three student cohorts, each with its own score-bucket histogram, drawn as separate facets so their
differently shaped distributions stay legible.

```example
file: examples/ScoreDistributionByCohort.ts
html: examples/ScoreDistributionByCohort.html
title: Score Distribution by Cohort
description: Score-bucket counts for Cohorts A, B, and C as side-by-side distribution facets.
```

## Latency Distribution by Region

Request-latency histograms for the US, EU, and APAC regions shown as facets, highlighting how APAC
shifts toward the slower buckets.

```example
file: examples/LatencyDistributionByRegion.ts
html: examples/LatencyDistributionByRegion.html
title: Latency Distribution by Region
description: Per-region request-latency buckets rendered as separate distribution facets.
```

```api
```
