# XWUIChartRealTimeStreaming

A real-time streaming chart: a fixed-type wrapper around `XWUIChart` that renders a
time-series line styled for live, continuously updating feeds where the newest points
arrive at the leading edge. 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 for
dashboards that track a metric as it streams in.

## Basic Usage

Two named series of monthly values rendered with the streaming line presentation at the
md size preset.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Two monthly series shown as a live-feed line via the realTimeStreaming chart type.
```

## Traffic Spike

A single 60-sample stream of edge-gateway requests per second that captures a flash-sale burst rising above the baseline and recovering.

```example
file: examples/TrafficSpike.ts
html: examples/TrafficSpike.html
title: Traffic Spike
description: A 60-sample requests/sec live feed spiking during a flash sale then recovering.
```

## Room Temperature

Two IoT temperature sensors streaming in parallel from a server room and an office, contrasting a volatile feed against a stable one.

```example
file: examples/RoomTemperature.ts
html: examples/RoomTemperature.html
title: Room Temperature
description: Two room sensors streaming Celsius readings, one volatile and one steady.
```

```api
```
