# XWUIChartRadialTree

XWUIChartRadialTree is a graph-family chart that extends XWUIChartGraphBlockBase (the shared graph-block adapter over XWUIChartGraph) rather than the Cartesian XWUIChart, setting `layoutMode: 'radial'` so a hierarchy radiates outward from a central root node. It accepts graph wire data via `nodes` (with nested `children`) plus the same `block` (1-4, clamped) and `size` (`'small'` | `'medium'` | `'large'`) options. Use it to visualize a tree or org-style hierarchy where successive levels fan out in concentric rings around the root.

## Basic Usage

This example passes a hierarchy through `nodes` (with `series: []`): a Root whose children are A, B=40, and C=30, where A in turn has the leaves A1=10 and A2=20, rendered at `size: "md"` as nodes radiating from the root.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: A Root -> A/B/C hierarchy (A holding leaves A1=10 and A2=20) supplied via `nodes` and drawn as a radial tree at medium size.
```

## Company Org Chart

A three-level org hierarchy that fans out from the CEO to Engineering, Sales, and Marketing, with each leaf team weighted by its headcount.

```example
file: examples/CompanyOrgChart.ts
html: examples/CompanyOrgChart.html
title: Company Org Chart
description: A CEO root branching into Engineering/Sales/Marketing departments whose leaf teams carry headcount values, drawn as an interactive radial tree.
```

## File System Tree

A project directory mapped as a radial tree, with src/docs/tests folders and file leaves sized by their kilobyte footprint.

```example
file: examples/FileSystemTree.ts
html: examples/FileSystemTree.html
title: File System Tree
description: A project root branching into src/docs/tests folders with file leaves valued by size in KB, rendered at large size.
```

```api
```
