VennItem Class
Definition
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
Constructors
| Name | Description |
|---|---|
| VennItem | No summary available. |
VennItem Constructor
public VennItem()
Properties
| Name | Description |
|---|---|
| Fill | Gets or sets the fill brush for this item. |
| Name | Gets or sets the display name (label). |
| Sets | Gets or sets the identifiers of the sets this item belongs to. |
| Value | Gets 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; }