API Reference
Class
ChartHeatmapRow
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
- Method Chart.AddHeatmapRows
- Method Chart.AddHexbinHeatmapRows
Constructors
ChartHeatmapRow(System.String name, System.Collections.Generic.IEnumerable{System.Double} values) #Initializes a heatmap row.
Parameters
- name System.String
- The row name.
- values System.Collections.Generic.IEnumerable{System.Double}
- 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
- The row name.
- values System.Double[]
- 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
- The row name.
- values System.Nullable{System.Double}[]
- The row cells. Null entries are skipped while later values keep their one-based column positions.
Returns
A masked heatmap row.