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";
}
설명
일련 디자인 타임과 런타임 모두에 추가 되 면 자동으로 "기본"에 할당 됩니다 ChartArea 개체 또는 첫 번째 사용 가능한 차트 영역에는 ChartAreaCollection "Default"가 없는 경우.
계열을 그릴를 원하지 않는 경우 길이가 0 인 문자열을이 속성을 설정 합니다.