Skip to main content

VennItem Class

Definition

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

Represents a data item in a Venn Diagram. Can be a single set (e.g., "A") or an intersection (e.g., "A", "B").

public class VennItem

Inheritance: object -> VennItem

Constructors

NameDescription
VennItemNo summary available.

VennItem Constructor

public VennItem()

Properties

NameDescription
FillGets or sets the fill brush for this item.
NameGets or sets the display name (label).
SetsGets or sets the identifiers of the sets this item belongs to.
ValueGets or sets the value (area) of this item.

Fill Property

Gets or sets the fill brush for this item.

public Avalonia.Media.IBrush Fill { get; set; }

Name Property

Gets or sets the display name (label).

public string Name { get; set; }

Sets Property

Gets or sets the identifiers of the sets this item belongs to.

public System.Collections.Generic.IList<string> Sets { get; set; }

Value Property

Gets or sets the value (area) of this item.

public double Value { get; set; }