Click or drag to resize
Heatmap Constructor (AxisXY, Double, Double, Double, Double, Color)
Creates a Heatmap from an array of Color values.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public Heatmap(
	AxisXY axis,
	double xmin,
	double xmax,
	double ymin,
	double ymax,
	Color[,] color
)

Parameters

axis
Type: Imsl.Chart2DAxisXY
An AxisXY which contains the parent of this node.
xmin
Type: SystemDouble
A double which specifies the minimum x-value of the color data.
xmax
Type: SystemDouble
A double which specifies the maximum x-value of the color data.
ymin
Type: SystemDouble
A double which specifies the minimum y-value of the color data.
ymax
Type: SystemDouble
A double which specifies the maximum y-value of the color data.
color
Type: System.DrawingColor
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