SunburstItem Class
Definition
Represents an item in a sunburst chart.
public class SunburstItem
Constructors
| Name | Description |
|---|---|
| SunburstItem | No summary available. |
SunburstItem Constructor
public SunburstItem()
Properties
| Name | Description |
|---|---|
| Children | Gets or sets the collection of child items. |
| Label | Gets or sets the display label. |
| OriginalItem | Gets or sets the original data item. |
| Value | Gets 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; }