# XWUIChartReciprocal

A reciprocal chart: a fixed-type wrapper around `XWUIChart` that plots an inverse (1/x)
relationship, producing the falling hyperbolic curve seen in inverse-proportion data.
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 visualise quantities that drop off as
their input grows.

## Basic Usage

Two named series of monthly values rendered as reciprocal curves at the md size preset.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Two monthly series drawn as inverse curves via the reciprocal chart type.
```

## Boyle's Law

Gas pressure measured against volume at constant temperature, where P x V stays constant so the series traces the classic inverse-proportion hyperbola.

```example
file: examples/BoylesLaw.ts
html: examples/BoylesLaw.html
title: Boyle's Law
description: Pressure vs volume of a fixed gas sample tracing the P proportional to 1/V curve.
```

## Bandwidth vs Latency

Single-connection throughput plotted against round-trip latency, showing bandwidth dropping off as roughly 1/latency.

```example
file: examples/BandwidthLatency.ts
html: examples/BandwidthLatency.html
title: Bandwidth vs Latency
description: Throughput falling as the inverse of round-trip latency over one connection.
```

```api
```
