다음을 통해 공유


Series.ChartArea 속성

정의

데이터 계열(있는 경우)을 그리는 데 사용되는 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

속성 값

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";  

}  

설명

일련 디자인 타임과 런타임 모두에 추가 되 면 자동으로 "기본"에 할당 됩니다 ChartArea 개체 또는 첫 번째 사용 가능한 차트 영역에는 ChartAreaCollection "Default"가 없는 경우.

계열을 그릴를 원하지 않는 경우 길이가 0 인 문자열을이 속성을 설정 합니다.

적용 대상