Skip to main content

IcicleItem Class

Definition

Assembly:Avalonia.Controls.Charts
Package:Avalonia.Controls.Charts

Represents a hierarchical data item for an icicle chart, which displays hierarchical data as nested horizontal bars.

public class IcicleItem

Inheritance: object -> IcicleItem

Constructors

NameDescription
IcicleItemNo summary available.

IcicleItem Constructor

public IcicleItem()

Properties

NameDescription
ChildrenGets or sets the child items nested under this item.
LabelGets or sets the label shown for this hierarchical item.
ValueGets 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; }