[C#] | public DiscreteHeatMapLayer addDiscreteHeatMapLayer(double[] zData, int xCount); |
[VB] | Public Function addDiscreteHeatMapLayer(zData As Double(), xCount As Integer) As DiscreteHeatMapLayer |
ChartDirector 7.1 (.NET Edition)
XYChart.
Usage
[C#] | public DiscreteHeatMapLayer addDiscreteHeatMapLayer(double[] zData, int xCount); |
[VB] | Public Function addDiscreteHeatMapLayer(zData As Double(), xCount As Integer) As DiscreteHeatMapLayer |
Description
Arguments
Argument | Default | Description |
---|---|---|
zData | (Mandatory) | An array containing the data values of the cells. |
xCount | (Mandatory) | The number of cells in the x direction. The number of cells in the y direction will be computed as the total number of cells (the size of the zData array) divided by xCount. |
Return Value