ComponentOne Xamarin.iOS Documentation
C1.iOS.Chart Assembly / C1.iOS.Chart Namespace / Histogram Class / GetValues Method
Specifies the dimension of data to retrieve (0=Y data, 1=X data, 2=Y1 data, ...)


In This Topic
    GetValues Method (Histogram)
    In This Topic
    Gets the point data array for the specified coordinate dimension.
    Syntax
    'Declaration
     
    
    <EditorBrowsableAttribute(EditorBrowsableState.Never)>
    Public Overrides Function GetValues( _
       ByVal dim As Integer _
    ) As Double()
    'Usage
     
    
    Dim instance As Histogram
    Dim dim As Integer
    Dim value() As Double
     
    value = instance.GetValues(dim)
    [EditorBrowsable(EditorBrowsableState.Never)]
    public override double[] GetValues( 
       int dim
    )

    Parameters

    dim
    Specifies the dimension of data to retrieve (0=Y data, 1=X data, 2=Y1 data, ...)

    Return Value

    The point data array for the specified coordinate dimension
    See Also