# XWUIChartCorrelogram

A correlogram (a grid of scatterplots / autocorrelation plot used to inspect relationships across many variable pairs or across lags): a fixed-type wrapper around `XWUIChart` that plots each series so you can read how values track one another and where the association tails off. Pass `series` of `{ x, y }` points 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 survey correlation structure across pairs or lags rather than inspecting a single relationship in isolation.

## Basic Usage

Two monthly series (Series A and Series B, Jan-Jun) fed to the correlogram renderer at the md size preset.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Two series of monthly values drawn by the correlogram renderer to surface how they move relative to one another.
```

## Retail Sales ACF

The autocorrelation of monthly retail sales against lag, with a seasonal bump near the twelve-month mark.

```example
file: examples/SalesSeasonality.ts
html: examples/SalesSeasonality.html
title: Retail Sales ACF
description: An autocorrelation function of monthly sales by lag, where the spike near lag 12 confirms a yearly seasonal cycle.
```

## Daily Temperature ACF

The autocorrelation of daily mean temperature against lag in days, damping out over roughly a month.

```example
file: examples/TemperatureAcf.ts
html: examples/TemperatureAcf.html
title: Daily Temperature ACF
description: An autocorrelation function of daily temperature by lag, showing strong short-range persistence that decays over a month.
```

```api
```
