# XWUIChartRangePlot

A range-plot chart: a fixed-type wrapper around `XWUIChart` that draws each category
as a band spanning the high/low values across its series, making it easy to read the
minimum-to-maximum spread per point. 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
to the inner chart. Use it to compare ranges rather than single values.

## Basic Usage

Two named series of monthly values rendered as a range plot at the md size preset.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Two monthly series drawn as a min-to-max band via the rangePlot chart type.
```

## Stock 52-Week Range

Each ticker's 52-week low and high prices drawn as a min-to-max band, surfacing which names traded across the widest range.

```example
file: examples/StockFiftyTwoWeekRange.ts
html: examples/StockFiftyTwoWeekRange.html
title: Stock 52-Week Range
description: 52-week Low and High price series for six tickers drawn as an interactive min-to-max band with a dollar unit.
```

## Sensor Tolerance Band

Per-sample min and max sensor readings plotted against a shaded acceptable-tolerance region.

```example
file: examples/SensorToleranceBand.ts
html: examples/SensorToleranceBand.html
title: Sensor Tolerance Band
description: Min and Max sensor readings per sample drawn as a band with a region annotation marking the acceptable 48-58 mV tolerance window.
```

```api
```
