MaxDepth プロパティで xamOrgChart に表示されるレベルの最大数を管理できます。実際に表示されるレベルの数は ActualDepth プロパティに保存されます (このプロパティは読み取り専用です)。図 1 は、MaxDepth プロパティのさまざまな値の効果を説明します。
図 1: MaxDepth プロパティの設定に基づき、xamOrgChart コントロールによってさまざまな深さレベルが表示される
以下のコードは、 「xamOrgChart をアプリケーションに追加」で作成した組織図の実装を使用します。
XAML の場合:
<ig:XamOrgChart MaxDepth="4"> </ig:XamOrgChart>
Visual Basic の場合:
Dim orgChart As New XamOrgChart() orgChart.MaxDepth = 4 Dim acturalDepth As Integer = orgChart.ActualDepth
C# の場合:
XamOrgChart orgChart = new XamOrgChart(); orgChart.MaxDepth = 4; int acturalDepth = orgChart.ActualDepth;