# XWUIChartAdjacencyMatrix

A matrix-style chart backed by `XWUIChart` that renders relationships between entities as a colored grid, where each cell encodes the connection strength between its row and column. Use it to visualize graphs, correlations, or any pairwise table as a heat grid rather than a node-link diagram.

## Basic Usage

A 5x5 grid built from generated rows, where each cell's value drives its color intensity.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: A 5x5 adjacency grid coloring each cell by its row/column connection value.
```

## Microservice Call Matrix

Inter-service request volume as an adjacency grid, with callers on rows and callees on columns lighting up the hottest dependencies.

```example
file: examples/ServiceCallMatrix.ts
html: examples/ServiceCallMatrix.html
title: Microservice Call Matrix
description: Service-to-service request rates rendered as a colored adjacency grid.
```

## Feature Correlation Matrix

A churn model's feature correlations as an adjacency grid, with strong positive and negative pairs reading as the most saturated cells.

```example
file: examples/FeatureCorrelation.ts
html: examples/FeatureCorrelation.html
title: Feature Correlation Matrix
description: Pairwise feature correlations (x100) rendered as an adjacency grid.
```

```api
```
