# XWUIChartRadialNetwork

XWUIChartRadialNetwork is a graph-family chart that extends XWUIChartGraphBlockBase (the shared graph-block adapter over XWUIChartGraph) rather than the Cartesian XWUIChart, setting `layoutMode: 'circular'` so nodes are placed around a ring and connected by links. It accepts the usual graph wire data (`series`/`nodes`/`links`, converted internally) and the same `block` (1-4, clamped) and `size` (`'small'` | `'medium'` | `'large'`) options. Use it to show relationships or connectivity among a set of entities laid out evenly on a circle, where the circular arrangement keeps every node on the perimeter and the links visible across the middle.

## Basic Usage

This example passes a single "Share" series of five slices (A=35, B=25, C=20, D=12, E=8) at `size: "md"`; the graph adapter turns that wire data into nodes and links arranged on a circle.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: A single five-slice "Share" series (A=35, B=25, C=20, D=12, E=8) rendered as circular network nodes and links at medium size.
```

## Microservices Mesh

A six-service backend laid out on a ring with the api-gateway as the hub, connected by weighted synchronous call dependencies.

```example
file: examples/MicroservicesMesh.ts
html: examples/MicroservicesMesh.html
title: Microservices Mesh
description: Six services as nodes (sized by request share) with call-dependency links, interactive at large size.
```

## Org Collaboration Graph

Company teams arranged on a ring and linked by how many projects they shared last quarter, revealing the strongest cross-team partnerships.

```example
file: examples/OrgCollaborationGraph.ts
html: examples/OrgCollaborationGraph.html
title: Org Collaboration Graph
description: Six teams as nodes (sized by headcount) connected by shared-project links, with legend at medium size.
```

```api
```
