Table of Contents

Class BOBChartFunnelStep<TY>

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

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

TY

Numeric value type.

Inheritance
object
BOBChartFunnelStep<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