CustomLabelsCollection.Add 方法

定义

CustomLabel 对象添加到集合中。

重载

Add(Double, DateTimeIntervalType)

将多个 CustomLabel 类型的 DateTime 对象添加到集合中。 使用标签填充轴的整个第一行。

Add(Double, Double, String)

使用给定的轴范围和文本将 CustomLabel 对象添加到集合中。

Add(Double, DateTimeIntervalType, String)

将多个 DateTimeCustomLabelsCollection 对象添加到集合。 使用具有特定格式的标签填充轴的整个第一行。

Add(Double, Double, String, Int32, LabelMarkStyle)

使用给定的轴范围、文本、行索引和标记样式将自定义标签添加到集合中。

Add(Double, DateTimeIntervalType, String, Int32, LabelMarkStyle)

向集合中添加多个自定义标签。 这些标签将是具有指定间隔类型、文本格式、行索引和标记样式的 DateTime 标签。

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

使用给定的轴范围、文本、行索引、标记样式和网格刻度类型将自定义标签添加到集合中。

Add(Double, DateTimeIntervalType, Double, Double, String, Int32, LabelMarkStyle)

向集合中添加多个自定义标签。 这些标签将是具有指定间隔类型的 DateTime 标签,并将为由 minmax 参数确定的轴范围生成这些标签。

Add(Double, DateTimeIntervalType)

将多个 CustomLabel 类型的 DateTime 对象添加到集合中。 使用标签填充轴的整个第一行。

public:
 void Add(double labelsStep, System::Windows::Forms::DataVisualization::Charting::DateTimeIntervalType intervalType);
public void Add (double labelsStep, System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType intervalType);
override this.Add : double * System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType -> unit
Public Sub Add (labelsStep As Double, intervalType As DateTimeIntervalType)

参数

labelsStep
Double

一个 Double,确定自定义标签的绘制频率。

intervalType
DateTimeIntervalType

一个 DateTimeIntervalType 枚举值,该值确定间隔类型。

注解

Add方法 CustomLabel 为轴的整个第一个标签行创建和初始化对象,该标签具有 DateTime 指定类型的标签。

labelsStep参数确定自定义标签的绘制频率。

备注

RecalculateAxesScale调用此特定方法定义之前,必须先调用方法。

适用于

Add(Double, Double, String)

使用给定的轴范围和文本将 CustomLabel 对象添加到集合中。

public:
 System::Windows::Forms::DataVisualization::Charting::CustomLabel ^ Add(double fromPosition, double toPosition, System::String ^ text);
public System.Windows.Forms.DataVisualization.Charting.CustomLabel Add (double fromPosition, double toPosition, string text);
override this.Add : double * double * string -> System.Windows.Forms.DataVisualization.Charting.CustomLabel
Public Function Add (fromPosition As Double, toPosition As Double, text As String) As CustomLabel

参数

fromPosition
Double

向其应用标签的轴范围的最小值。

toPosition
Double

向其应用标签的轴范围的最大值。

text
String

标签文本。

返回

CustomLabel

新添加的 CustomLabel 对象。

注解

向相关轴的第一个标签行添加一个自定义标签。 不使用标签标记。

如果在第一个标签行中的任何位置使用自定义标签,则不会为该行自动生成标签。

备注

RecalculateAxesScale调用此特定方法定义之前,必须先调用方法。

适用于

Add(Double, DateTimeIntervalType, String)

将多个 DateTimeCustomLabelsCollection 对象添加到集合。 使用具有特定格式的标签填充轴的整个第一行。

public:
 void Add(double labelsStep, System::Windows::Forms::DataVisualization::Charting::DateTimeIntervalType intervalType, System::String ^ format);
public void Add (double labelsStep, System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType intervalType, string format);
override this.Add : double * System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType * string -> unit
Public Sub Add (labelsStep As Double, intervalType As DateTimeIntervalType, format As String)

参数

labelsStep
Double

一个 Double,确定自定义标签的绘制频率。

intervalType
DateTimeIntervalType

一个 DateTimeIntervalType 枚举值,该值确定 labelsStep 参数的度量单位。

format
String

一个确定自定义标签格式的值。

注解

此方法 CustomLabel 为轴的具有指定类型的第一个标签行创建和初始化对象 DateTime

步骤确定自定义标签的绘制频率,还可以指定可选的标签格式。

备注

RecalculateAxesScale调用此特定方法定义之前,必须先调用方法。

适用于

Add(Double, Double, String, Int32, LabelMarkStyle)

使用给定的轴范围、文本、行索引和标记样式将自定义标签添加到集合中。

public:
 System::Windows::Forms::DataVisualization::Charting::CustomLabel ^ Add(double fromPosition, double toPosition, System::String ^ text, int rowIndex, System::Windows::Forms::DataVisualization::Charting::LabelMarkStyle markStyle);
public System.Windows.Forms.DataVisualization.Charting.CustomLabel Add (double fromPosition, double toPosition, string text, int rowIndex, System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle markStyle);
override this.Add : double * double * string * int * System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle -> System.Windows.Forms.DataVisualization.Charting.CustomLabel
Public Function Add (fromPosition As Double, toPosition As Double, text As String, rowIndex As Integer, markStyle As LabelMarkStyle) As CustomLabel

参数

fromPosition
Double

向其应用标签的轴范围的最小值。

toPosition
Double

向其应用标签的轴范围的最大值。

text
String

标签文本。

rowIndex
Int32

标签行索引。

markStyle
LabelMarkStyle

指定标签的标记样式的 LabelMarkStyle 枚举值。

返回

CustomLabel

新添加的 CustomLabel 对象。

适用于

Add(Double, DateTimeIntervalType, String, Int32, LabelMarkStyle)

向集合中添加多个自定义标签。 这些标签将是具有指定间隔类型、文本格式、行索引和标记样式的 DateTime 标签。

public:
 void Add(double labelsStep, System::Windows::Forms::DataVisualization::Charting::DateTimeIntervalType intervalType, System::String ^ format, int rowIndex, System::Windows::Forms::DataVisualization::Charting::LabelMarkStyle markStyle);
public void Add (double labelsStep, System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType intervalType, string format, int rowIndex, System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle markStyle);
override this.Add : double * System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType * string * int * System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle -> unit
Public Sub Add (labelsStep As Double, intervalType As DateTimeIntervalType, format As String, rowIndex As Integer, markStyle As LabelMarkStyle)

参数

labelsStep
Double

一个 Double,确定自定义标签的绘制频率。

intervalType
DateTimeIntervalType

一个 DateTimeIntervalType 枚举值,该值确定 labelsStep 参数的度量单位。

format
String

标签文本格式。

rowIndex
Int32

标签行索引。

markStyle
LabelMarkStyle

指定标签的标记样式的 LabelMarkStyle 枚举值。

适用于

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

使用给定的轴范围、文本、行索引、标记样式和网格刻度类型将自定义标签添加到集合中。

public:
 System::Windows::Forms::DataVisualization::Charting::CustomLabel ^ Add(double fromPosition, double toPosition, System::String ^ text, int rowIndex, System::Windows::Forms::DataVisualization::Charting::LabelMarkStyle markStyle, System::Windows::Forms::DataVisualization::Charting::GridTickTypes gridTick);
public System.Windows.Forms.DataVisualization.Charting.CustomLabel Add (double fromPosition, double toPosition, string text, int rowIndex, System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle markStyle, System.Windows.Forms.DataVisualization.Charting.GridTickTypes gridTick);
override this.Add : double * double * string * int * System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle * System.Windows.Forms.DataVisualization.Charting.GridTickTypes -> System.Windows.Forms.DataVisualization.Charting.CustomLabel
Public Function Add (fromPosition As Double, toPosition As Double, text As String, rowIndex As Integer, markStyle As LabelMarkStyle, gridTick As GridTickTypes) As CustomLabel

参数

fromPosition
Double

向其应用标签的轴范围的最小值。

toPosition
Double

向其应用标签的轴范围的最大值。

text
String

标签文本。

rowIndex
Int32

标签行索引。

markStyle
LabelMarkStyle

指定标签的标记样式的 LabelMarkStyle 枚举值。

gridTick
GridTickTypes

指定用于标签的网格刻度的 GridTickTypes 枚举值。

返回

CustomLabel

新添加的 CustomLabel 对象。

适用于

Add(Double, DateTimeIntervalType, Double, Double, String, Int32, LabelMarkStyle)

向集合中添加多个自定义标签。 这些标签将是具有指定间隔类型的 DateTime 标签,并将为由 minmax 参数确定的轴范围生成这些标签。

public:
 void Add(double labelsStep, System::Windows::Forms::DataVisualization::Charting::DateTimeIntervalType intervalType, double min, double max, System::String ^ format, int rowIndex, System::Windows::Forms::DataVisualization::Charting::LabelMarkStyle markStyle);
public void Add (double labelsStep, System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType intervalType, double min, double max, string format, int rowIndex, System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle markStyle);
override this.Add : double * System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType * double * double * string * int * System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle -> unit
Public Sub Add (labelsStep As Double, intervalType As DateTimeIntervalType, min As Double, max As Double, format As String, rowIndex As Integer, markStyle As LabelMarkStyle)

参数

labelsStep
Double

一个 Double,确定自定义标签的绘制频率。

intervalType
DateTimeIntervalType

一个 DateTimeIntervalType 枚举值,该值确定 labelsStep 参数的度量单位。

min
Double

轴范围的最小值。

max
Double

轴范围的最大值。

format
String

标签文本格式。

rowIndex
Int32

标签行索引。

markStyle
LabelMarkStyle

指定标签的标记样式的 LabelMarkStyle 枚举值。

适用于