Click or drag to resize
Dendrogram Constructor (AxisXY, Double, Int32, Int32, Int32)
Constructs a Dendrogram chart using supplied data.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public Dendrogram(
	AxisXY axis,
	double[] clusterLevel,
	int[] leftSons,
	int[] rightSons,
	int type
)

Parameters

axis
Type: Imsl.Chart2DAxisXY
An AxisXY specifying the parent of this node.
clusterLevel
Type: SystemDouble
A double[] which contains the levels at which the clusters are joined.
leftSons
Type: SystemInt32
An int[] which contains the left sons of each merged cluster.
rightSons
Type: SystemInt32
An int[] which contains the right sons of each merged cluster.
type
Type: SystemInt32
An int which specifies the Dendrogram type.
Remarks
The types possible types of Dendrograms are DENDROGRAM_TYPE_VERTICAL and DENDROGRAM_TYPE_HORIZONTAL.
See Also