Project

ChartForgeX

Render deterministic charts, dashboards, topology, hierarchy, and report visuals directly from .NET.

Stars 45
Forks 2
NuGet downloads 48,107
Release ChartForgeX-v1.7.0
Language: HTML Updated: 2026-09-02

API Reference

Class

ChartHeatmapRow

Namespace ChartForgeX.Core

Describes one reusable heatmap matrix row.

Inheritance

  • Object
  • ChartHeatmapRow

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Accepted by parameters

Constructors

ChartHeatmapRow(System.String name, System.Collections.Generic.IEnumerable{System.Double} values) #

Initializes a heatmap row.

Parameters

name System.String required
The row name.
values System.Collections.Generic.IEnumerable{System.Double} required
The row values. Values are assigned to columns one through N.

Methods

Create(System.String name, System.Double[] values) #

Creates a heatmap row from one-based cell values.

Parameters

name System.String required
The row name.
values System.Double[] required
The row values. Values are assigned to columns one through N.

Returns

A heatmap row.

CreateMasked(System.String name, System.Nullable{System.Double}[] values) #

Creates a heatmap row with optional masked cells. Null cells reserve their column position but do not render.

Parameters

name System.String required
The row name.
values System.Nullable{System.Double}[] required
The row cells. Null entries are skipped while later values keep their one-based column positions.

Returns

A masked heatmap row.

Properties

Name #

Gets the row name.

Values #

Gets the row values.

Cells #

Gets row cells. Null entries are masked cells that do not render.

HasMaskedCells #

Gets a value indicating whether the row contains masked cells.