ComponentOne 3D Chart for WinForms
C1.Win.C1Chart3D.4.5.2 Assembly / C1.Win.C1Chart3D Namespace / Chart3DData Class / SetJaggedContourData Method
Array of z-values.

In This Topic
    SetJaggedContourData Method
    In This Topic
    Sets the contour data with a two-dimensional integer array, or a jagged integer, jagged float or jagged double array.
    Syntax
    'Declaration
     
    Public Sub SetJaggedContourData( _
       ByVal z As System.Object _
    ) 
    public void SetJaggedContourData( 
       System.object z
    )

    Parameters

    z
    Array of z-values.
    Remarks

    Jagged arrays are useful in certain instances for manipulating data. In Delphi, multiply dimensioned arrays are jagged. This method will also conveniently accept a two-dimensional integer array. Delphi users should use the SetJaggedContourData method instead of the ContourData property.

    For non-jagged arrays, set the ContourData property instead.

    See Also