FlameItem Class
Definition
Represents a node in the Flame Graph.
public class FlameItem
Constructors
| Name | Description |
|---|---|
| FlameItem | No summary available. |
FlameItem Constructor
public FlameItem()
Properties
| Name | Description |
|---|---|
| Children | Gets or sets the list of child items. |
| Label | Gets or sets the label text. |
| Value | Gets or sets the value (width/computational cost). |
Children Property
Gets or sets the list of child items.
public System.Collections.Generic.List<Avalonia.Controls.Charts.FlameItem> Children { get; set; }
Label Property
Gets or sets the label text.
public string Label { get; set; }
Value Property
Gets or sets the value (width/computational cost).
public double Value { get; set; }