Skip to main content

FlameItem Class

Definition

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

Represents a node in the Flame Graph.

public class FlameItem

Inheritance: object -> FlameItem

Constructors

NameDescription
FlameItemNo summary available.

FlameItem Constructor

public FlameItem()

Properties

NameDescription
ChildrenGets or sets the list of child items.
LabelGets or sets the label text.
ValueGets 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; }