# XWUIChartRun

A run chart: a fixed-type wrapper around `XWUIChart` that plots values in time order as a
simple line, the lightweight process-monitoring chart used to spot shifts, trends, and runs
above or below a center line. Pass your data as `series` of `{ x, y }` values plus an
optional `block` preset (1-4) and `size` (`sm` / `md` / `lg`); the shared block
config also forwards legend, grid, axis, data-label, and tooltip toggles. Use it to track a
metric over time and watch for non-random patterns.

## Basic Usage

Two named series of monthly values plotted in sequence as run lines at the medium size
preset.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Two monthly series plotted in time order via the run chart type.
```

## Defect Run

Daily defect count over a month, steady around five then shifting upward from day sixteen.

```example
file: examples/DefectRun.ts
html: examples/DefectRun.html
title: Defect Run
description: Daily defect count with a mid-month upward process shift at large size with labels.
```

## Response Latency

Hourly median API response time across a day against its overnight baseline.

```example
file: examples/ResponseLatency.ts
html: examples/ResponseLatency.html
title: Response Latency
description: Hourly API latency rising through the afternoon peak, block 3 preset, interactive.
```

```api
```
