Heatmap Constructor (AxisXY, Double, Double, Double, Double, Color) |
Creates a Heatmap from an array of Color
values.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public Heatmap(
AxisXY axis,
double xmin,
double xmax,
double ymin,
double ymax,
Color[,] color
)
Public Sub New (
axis As AxisXY,
xmin As Double,
xmax As Double,
ymin As Double,
ymax As Double,
color As Color(,)
)
public:
Heatmap(
AxisXY^ axis,
double xmin,
double xmax,
double ymin,
double ymax,
array<Color,2>^ color
)
new :
axis : AxisXY *
xmin : float *
xmax : float *
ymin : float *
ymax : float *
color : Color[,] -> Heatmap
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