Udostępnij za pośrednictwem


Series.ChartArea Właściwość

Definicja

Pobiera lub ustawia nazwę obiektu ChartArea używanego do wykreślenia serii danych, jeśli są używane.

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

Wartość właściwości

String

Wartość string reprezentująca ChartArea obiekt , który jest używany do wykreślenia serii.

Atrybuty

Przykłady

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

}  

Uwagi

Gdy seria jest dodawana zarówno w czasie projektowania, jak i w czasie uruchamiania, jest ona automatycznie przypisywana do obiektu "Default" lub pierwszego dostępnego obszaru wykresu w przypadku, gdy ChartArea ChartAreaCollection opcja "Default" nie istnieje.

Ustaw tę właściwość na ciąg o zerowej długości, jeśli nie chcesz kreślić serii.

Dotyczy