CustomLabel Constructors

Definitie

Hiermee maakt u een nieuw exemplaar van de CustomLabel klasse.

Overloads

Name Description
CustomLabel()

Hiermee maakt u een nieuw exemplaar van de CustomLabel klasse.

CustomLabel(Double, Double, String, Int32, LabelMarkStyle)

Initialiseert een nieuw exemplaar van de CustomLabel klasse met de opgegeven fromPosition, toPosition, text, en labelRowmarkStyle parameters.

CustomLabel(Double, Double, String, Int32, LabelMarkStyle, GridTickTypes)

Initialiseert een nieuw exemplaar van de CustomLabel klasse met de opgegeven fromPosition, toPosition, text, en labelRowmarkStylegridTick parameters.

CustomLabel()

Hiermee maakt u een nieuw exemplaar van de CustomLabel klasse.

public:
 CustomLabel();
public CustomLabel();
Public Sub New ()

Opmerkingen

Deze constructor kan worden gebruikt om een nieuw exemplaar van de CustomLabel klasse te maken en te initialiseren.

Het wordt echter aanbevolen om een van de Add methoden in de CustomLabelsCollection klasse te gebruiken om aangepaste labels toe te voegen.

Van toepassing op

CustomLabel(Double, Double, String, Int32, LabelMarkStyle)

Initialiseert een nieuw exemplaar van de CustomLabel klasse met de opgegeven fromPosition, toPosition, text, en labelRowmarkStyle parameters.

public:
 CustomLabel(double fromPosition, double toPosition, System::String ^ text, int labelRow, System::Web::UI::DataVisualization::Charting::LabelMarkStyle markStyle);
public CustomLabel(double fromPosition, double toPosition, string text, int labelRow, System.Web.UI.DataVisualization.Charting.LabelMarkStyle markStyle);
new System.Web.UI.DataVisualization.Charting.CustomLabel : double * double * string * int * System.Web.UI.DataVisualization.Charting.LabelMarkStyle -> System.Web.UI.DataVisualization.Charting.CustomLabel
Public Sub New (fromPosition As Double, toPosition As Double, text As String, labelRow As Integer, markStyle As LabelMarkStyle)

Parameters

fromPosition
Double

Het begin van het asbereik waar het label op van toepassing is.

toPosition
Double

Het einde van het asbereik waar het label op van toepassing is.

text
String

De labeltekst.

labelRow
Int32

De index van de labelrij.

markStyle
LabelMarkStyle

De labelmarkeringsstijl.

Van toepassing op

CustomLabel(Double, Double, String, Int32, LabelMarkStyle, GridTickTypes)

Initialiseert een nieuw exemplaar van de CustomLabel klasse met de opgegeven fromPosition, toPosition, text, en labelRowmarkStylegridTick parameters.

public:
 CustomLabel(double fromPosition, double toPosition, System::String ^ text, int labelRow, System::Web::UI::DataVisualization::Charting::LabelMarkStyle markStyle, System::Web::UI::DataVisualization::Charting::GridTickTypes gridTick);
public CustomLabel(double fromPosition, double toPosition, string text, int labelRow, System.Web.UI.DataVisualization.Charting.LabelMarkStyle markStyle, System.Web.UI.DataVisualization.Charting.GridTickTypes gridTick);
new System.Web.UI.DataVisualization.Charting.CustomLabel : double * double * string * int * System.Web.UI.DataVisualization.Charting.LabelMarkStyle * System.Web.UI.DataVisualization.Charting.GridTickTypes -> System.Web.UI.DataVisualization.Charting.CustomLabel
Public Sub New (fromPosition As Double, toPosition As Double, text As String, labelRow As Integer, markStyle As LabelMarkStyle, gridTick As GridTickTypes)

Parameters

fromPosition
Double

Het begin van het asbereik waar het label op van toepassing is.

toPosition
Double

Het einde van het asbereik waar het label op van toepassing is.

text
String

De labeltekst.

labelRow
Int32

De index van de labelrij.

markStyle
LabelMarkStyle

De labelmarkeringsstijl.

gridTick
GridTickTypes

De vlag voor aangepaste rasterlijnen en/of maatstreepjes.

Van toepassing op