Series.ChartArea プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
データ系列のプロットに使用される ChartArea オブジェクトの名前を取得または設定します (存在する場合)。
public:
property System::String ^ ChartArea { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.DataVisualization.Charting.SeriesAreaNameConverter))]
public string ChartArea { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.DataVisualization.Charting.SeriesAreaNameConverter))>]
member this.ChartArea : string with get, set
Public Property ChartArea As String
プロパティ値
系列のプロットに使用される ChartArea オブジェクトを表す string
値。
- 属性
例
' Create a new legend and associate three series with the legend.
Public Sub CreateSecondLegend()
' Attach the first series to a chart area.
Chart1.Series["Series1"].ChartArea = "Chart Area 1";
' Attach the second series to a chart area.
Chart1.Series["Series2"].ChartArea = "Chart Area 2";
End Sub 'CreateSecondLegend
// Create a new legend and associate three series with the legend.
public void CreateSecondLegend()
{
// Attach the first series to a chart area.
Chart1.Series["Series1"].ChartArea = "Chart Area 1";
// Attach the second series to a chart area.
Chart1.Series["Series2"].ChartArea = "Chart Area 2";
}
注釈
デザイン時と実行時の両方で系列を追加すると、"Default" オブジェクトに自動的に割り当てられます。"Default" が存在しない場合は、 内の最初に使用可能なグラフ領域に割り当てられます ChartArea ChartAreaCollection 。
系列をプロットしない場合は、このプロパティを長さ 0 の文字列に設定します。