Table of Contents

Struct BOBChartHeatmapCell<TX, TY>

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

Cell in a BOBHeatmapChart<TX, TY> grid: (X-bucket, Y-bucket, intensity Value).

public readonly struct BOBChartHeatmapCell<TX, TY>

Type Parameters

TX

Column key type.

TY

Row key type.

Constructors

BOBChartHeatmapCell(TX, TY, double)

Cell in a BOBHeatmapChart<TX, TY> grid: (X-bucket, Y-bucket, intensity Value).

public BOBChartHeatmapCell(TX X, TY Y, double Value)

Parameters

X TX
Y TY
Value double

Properties

Value

public double Value { get; init; }

Property Value

double

X

public TX X { get; init; }

Property Value

TX

Y

public TY Y { get; init; }

Property Value

TY