IcicleItem Class
Definition
Represents a hierarchical data item for an icicle chart, which displays hierarchical data as nested horizontal bars.
public class IcicleItem
Constructors
| Name | Description |
|---|---|
| IcicleItem | No summary available. |
IcicleItem Constructor
public IcicleItem()
Properties
| Name | Description |
|---|---|
| Children | Gets or sets the child items nested under this item. |
| Label | Gets or sets the label shown for this hierarchical item. |
| Value | Gets or sets the numeric value represented by this item. |
Children Property
Gets or sets the child items nested under this item.
public System.Collections.Generic.List<Avalonia.Controls.Charts.IcicleItem> Children { get; set; }
Label Property
Gets or sets the label shown for this hierarchical item.
public string Label { get; set; }
Value Property
Gets or sets the numeric value represented by this item.
public double Value { get; set; }