# XWUIChartDendrogram

A dendrogram: a graph-family chart (extends `XWUIChartGraphBlockBase` with a
top-to-bottom `tree` layout, not the Cartesian `XWUIChart`) that draws a hierarchy as
a branching tree. Supply the hierarchy through `nodes`, where each node has a `name`,
a `value`, and optional `children`; pick a `size` (`sm` / `md` / `lg`). Use
it to show nested structure such as taxonomies, org charts, or clustering results.

## Basic Usage

A small `Root → A/B/C` hierarchy (with `A` split into `A1`/`A2`) drawn as a top-down
tree at the md size preset.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: A nested nodes/children hierarchy rendered as a top-down dendrogram tree.
```

## Org Reporting Structure

A company headcount hierarchy fanning out from the CEO into divisions and their sub-teams.

```example
file: examples/OrgChart.ts
html: examples/OrgChart.html
title: Org Reporting Structure
description: A CEO-down org chart with division and team nodes sized by headcount, shown at the lg preset with data labels.
```

## Mammal Classification

A biological taxonomy from class down to genus, showing nested scientific classification as a tree.

```example
file: examples/SpeciesTaxonomy.ts
html: examples/SpeciesTaxonomy.html
title: Mammal Classification
description: A Mammalia-to-genus taxonomy rendered as a top-down dendrogram with interactive nodes.
```

```api
```
