.netCHARTING v10.5 Documentation


dotnetCHARTING Namespace > AxisMarker Class > AxisMarker Constructor : AxisMarker Constructor(String,Color,Object,Object)
The Label drawn on the marker. The label trickles down to this AxisMarker object's LegendEntry.Name property unless one explicitly specified.
The color that fills the an area of the chart within the specified range.
Numeric, DateTime, or Text low axis range.
Numeric, DateTime, or Text high axis range..
AxisMarker Constructor(String,Color,Object,Object)
Initialize a new instance of the AxisMarker class with a label, colort, and axis range.
Syntax
'Declaration
 
Public Function New( _
   ByVal label As String, _
   ByVal col As Color, _
   ByVal valueLow As Object, _
   ByVal valueHigh As Object _
)
'Usage
 
Dim label As String
Dim col As Color
Dim valueLow As Object
Dim valueHigh As Object
 
Dim instance As New AxisMarker(label, col, valueLow, valueHigh)
public AxisMarker( 
   string label,
   Color col,
   object valueLow,
   object valueHigh
)

Parameters

label
The Label drawn on the marker. The label trickles down to this AxisMarker object's LegendEntry.Name property unless one explicitly specified.
col
The color that fills the an area of the chart within the specified range.
valueLow
Numeric, DateTime, or Text low axis range.
valueHigh
Numeric, DateTime, or Text high axis range..
Requirements

Target Platforms: 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