Table of Contents

Class BOBChartSankeyLink<TY>

Namespace
BlazOrbit.Charts.Models
Assembly
BlazOrbit.Charts.dll

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

TY

Numeric type of the link value.

Inheritance
object
BOBChartSankeyLink<TY>

Constructors

public BOBChartSankeyLink()

Properties

Optional explicit link color (any valid CSS color).

public string? Color { get; init; }

Property Value

string

Label of the source node (left side of the link).

public string Source { get; init; }

Property Value

string

Label of the target node (right side of the link).

public string Target { get; init; }

Property Value

string

Flow magnitude. The link ribbon's thickness scales with this.

public TY? Value { get; init; }

Property Value

TY