Version

InitAdvanceAxis Method (ChartLayer)

Creates and initializes a new IAdvanceAxis object.
Syntax
'Declaration
 
Protected Overridable Function InitAdvanceAxis( _
   ByVal axisNum As AxisNumber, _
   ByVal worldMax As Double, _
   ByVal worldMin As Double, _
   ByVal screenMax As Integer, _
   ByVal screenMin As Integer _
) As IAdvanceAxis
protected virtual IAdvanceAxis InitAdvanceAxis( 
   AxisNumber axisNum,
   double worldMax,
   double worldMin,
   int screenMax,
   int screenMin
)

Parameters

axisNum
The Axis identifier (X, Y, X2, Y2 or Z.)
worldMax
Maximum data value at the upper end of the Axis' ruler that translates into screenMax.
worldMin
Minimum data value at the lower end of the Axis' ruler that translates into screenMin.
screenMax
Maximum pixel location within bounds on the screen.
screenMin
Minimum pixel location within bounds on the screen.

Return Value

An IAdvanceAxis object with a numeric ruler for translating real-word values into screen coordinates.
Remarks

The reference returned will be to an Infragistics.UltraChart.Core.IAdvanceAxis object belonging to the current Chart's grid and having those characteristics as were defined by the chart's AxisAppearance object (axis type, logarithmic or linear base, range, etc.)

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also