Creates a Heatmap from an array of Color values.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public Heatmap(
	AxisXY axis,
	double xmin,
	double xmax,
	double ymin,
	double ymax,
	Color[,] color
)
Visual Basic (Declaration)
Public Sub New ( _
	axis As AxisXY, _
	xmin As Double, _
	xmax As Double, _
	ymin As Double, _
	ymax As Double, _
	color As Color(,) _
)
Visual C++
public:
Heatmap(
	AxisXY^ axis, 
	double xmin, 
	double xmax, 
	double ymin, 
	double ymax, 
	array<Color,2>^ color
)

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
An AxisXY which contains the parent of this node.
xmin
Type: System..::.Double
A double which specifies the minimum x-value of the color data.
xmax
Type: System..::.Double
A double which specifies the maximum x-value of the color data.
ymin
Type: System..::.Double
A double which specifies the minimum y-value of the color data.
ymax
Type: System..::.Double
A double which specifies the maximum y-value of the color data.
color
Type: array< System.Drawing..::.Color ,2>[,](,)[,]
A Color[,] which specifies the color values.

Remarks

The value of color[0,0] is the color of the cell whose lower left corner is (xmin, ymin).

See Also