dotnetCHARTING Send comments on this topic.
Axis Constructor(String,ChangeValueDelegate,Axis)
See Also 
dotnetCHARTING Namespace > Axis Class > Axis Constructor : Axis Constructor(String,ChangeValueDelegate,Axis)


name
The name and label of this axis.
ChangeValue
A delegate used to pass a custom method used for processing tick values.
axisToShadow
The original axis whose tick labels will be processed.
Initializes a new instance of the Axis class that will process the tick values of the specified axis based on a custom method.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal name As String, _
   ByVal ChangeValue As ChangeValueDelegate, _
   ByVal axisToShadow As Axis _
)
Visual Basic (Usage)Copy Code
Dim name As String
Dim ChangeValue As ChangeValueDelegate
Dim axisToShadow As Axis
 
Dim instance As Axis(name, ChangeValue, axisToShadow)
C# 
public Axis( 
   string name,
   ChangeValueDelegate ChangeValue,
   Axis axisToShadow
)

Parameters

name
The name and label of this axis.
ChangeValue
A delegate used to pass a custom method used for processing tick values.
axisToShadow
The original axis whose tick labels will be processed.

Remarks

This instance must be added to Chart.AxisCollection. The specified axis must appear on the chart, otherwise, the new instance will have no effect when added to Chart.AxisCollection.

See Also

© 2010 All Rights Reserved.