Class BOBChartSankeyLink<TY>
Edge in a BOBSankeyChart<TY> dataset. Carries flow from Source to Target with magnitude Value. The chart auto-derives node positions from the link graph - consumers only need to describe the edges.
public sealed record BOBChartSankeyLink<TY>
Type Parameters
TYNumeric type of the link value.
- Inheritance
-
objectBOBChartSankeyLink<TY>
Constructors
BOBChartSankeyLink()
public BOBChartSankeyLink()
Properties
Color
Optional explicit link color (any valid CSS color).
public string? Color { get; init; }
Property Value
- string
Source
Label of the source node (left side of the link).
public string Source { get; init; }
Property Value
- string
Target
Label of the target node (right side of the link).
public string Target { get; init; }
Property Value
- string
Value
Flow magnitude. The link ribbon's thickness scales with this.
public TY? Value { get; init; }
Property Value
- TY