Class BOBChartFunnelStep<TY>
A single stage of a BOBFunnelChart<TY>: label + numeric value. Steps are listed top → bottom in declaration order; the rendered funnel auto-scales each row's width by the largest value.
public sealed class BOBChartFunnelStep<TY>
Type Parameters
TYNumeric value type.
- Inheritance
-
objectBOBChartFunnelStep<TY>
Constructors
BOBChartFunnelStep()
public BOBChartFunnelStep()
Properties
Color
Optional explicit color override.
public string? Color { get; init; }
Property Value
- string
Label
Label rendered on the row.
public string Label { get; init; }
Property Value
- string
Value
Numeric value (typically count / amount).
public TY Value { get; init; }
Property Value
- TY