ComponentOne Chart for WPF and Silverlight
C1.WPF.C1Chart Namespace / AxisConverter Delegate
Value on the main axis.


In This Topic
    AxisConverter Delegate
    In This Topic
    Specifies delegate for using as DependentAxisConverter.
    Syntax
    'Declaration
     
    
    Public Delegate Function AxisConverter( _
       ByVal val As Double _
    ) As Double
    'Usage
     
    
    Dim instance As New AxisConverter(AddressOf HandlerMethod)
    public delegate double AxisConverter( 
       double val
    )

    Parameters

    val
    Value on the main axis.

    Return Value

    Value on the dependent axis.
    See Also