CustomLabel コンストラクター

定義

CustomLabel クラスの新しいインスタンスを作成します。

オーバーロード

名前 説明
CustomLabel()

CustomLabel クラスの新しいインスタンスを作成します。

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

指定したCustomLabelfromPositiontoPositiontext、およびlabelRowパラメーターを使用して、markStyle クラスの新しいインスタンスを初期化します。

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

指定したCustomLabelfromPositiontoPositiontextlabelRow、およびmarkStyleパラメーターを使用して、gridTick クラスの新しいインスタンスを初期化します。

CustomLabel()

CustomLabel クラスの新しいインスタンスを作成します。

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

注釈

このコンストラクターを使用して、 CustomLabel クラスの新しいインスタンスを作成および初期化できます。

ただし、カスタム ラベルを追加するには、Add クラスのいずれかのCustomLabelsCollection メソッドを使用することをお勧めします。

適用対象

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

指定したCustomLabelfromPositiontoPositiontext、およびlabelRowパラメーターを使用して、markStyle クラスの新しいインスタンスを初期化します。

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

パラメーター

fromPosition
Double

ラベルが適用される軸範囲の先頭。

toPosition
Double

ラベルが適用される軸範囲の末尾。

text
String

ラベル テキスト。

labelRow
Int32

ラベル行インデックス。

markStyle
LabelMarkStyle

ラベル マーク のスタイル。

適用対象

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

指定したCustomLabelfromPositiontoPositiontextlabelRow、およびmarkStyleパラメーターを使用して、gridTick クラスの新しいインスタンスを初期化します。

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

パラメーター

fromPosition
Double

ラベルが適用される軸範囲の先頭。

toPosition
Double

ラベルが適用される軸範囲の末尾。

text
String

ラベル テキスト。

labelRow
Int32

ラベル行インデックス。

markStyle
LabelMarkStyle

ラベル マーク のスタイル。

gridTick
GridTickTypes

カスタムグリッド線や目盛りフラグ。

適用対象