Skip to main content

SunburstItem Class

Definition

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

Represents an item in a sunburst chart.

public class SunburstItem

Inheritance: object -> SunburstItem

Constructors

NameDescription
SunburstItemNo summary available.

SunburstItem Constructor

public SunburstItem()

Properties

NameDescription
ChildrenGets or sets the collection of child items.
LabelGets or sets the display label.
OriginalItemGets or sets the original data item.
ValueGets or sets the numerical value.

Children Property

Gets or sets the collection of child items.

public System.Collections.Generic.List<Avalonia.Controls.Charts.SunburstItem> Children { get; set; }

Label Property

Gets or sets the display label.

public string Label { get; set; }

OriginalItem Property

Gets or sets the original data item.

public object OriginalItem { get; set; }

Value Property

Gets or sets the numerical value.

public double Value { get; set; }