| GrapeCity.Xaml.SpreadSheet.Data Namespace : LegendAlignment Enumeration | 
'Declaration Public Enum LegendAlignment Inherits System.Enum
'Usage Dim instance As LegendAlignment
public enum LegendAlignment : System.Enum
| Member | Description | 
|---|---|
| BottomCenter | Align the legend at the bottom center of the chart. | 
| BottomLeft | Align the legend at the bottom left of the chart. | 
| BottomRight | Align the legend at the bottom right of the chart. | 
| MiddleLeft | Align the legend at the middle left of the chart. | 
| MiddleRight | Align the legend at the middle right of the chart. | 
| TopCenter | Align the legend at the top center of the chart. | 
| TopLeft | Align the legend at the top left of the chart. | 
| TopRight | Align the legend at the top right of the chart. | 
GrapeCity.Xaml.SpreadSheet.Data.SpreadDataSeries series0 = new GrapeCity.Xaml.SpreadSheet.Data.SpreadDataSeries(); series0.Name = "Series 0"; series0.Values.Add(1.0); series0.Values.Add(2.0); series0.Values.Add(4.0); series0.Values.Add(8.0); GrapeCity.Xaml.SpreadSheet.Data.ChartTitle label = new GrapeCity.Xaml.SpreadSheet.Data.ChartTitle(); label.Text = "Pie Point Chart"; label.FontSize = 10; label.FontFamily = new FontFamily("Tahoma"); GrapeCity.Xaml.SpreadSheet.Data.Legend l = new GrapeCity.Xaml.SpreadSheet.Data.Legend(); l.Alignment = GrapeCity.Xaml.SpreadSheet.Data.LegendAlignment.TopLeft; GrapeCity.Xaml.SpreadSheet.Data.SpreadChart chart = new GrapeCity.Xaml.SpreadSheet.Data.SpreadChart(); chart.ChartTitle = label; chart.Legend = l; chart.DataSeries.Add(series0); // chart.DataSeries.Add(series1); chart.ChartType = GrapeCity.Xaml.SpreadSheet.Data.SpreadChartType.Pie; chart.Name = "name1"; this.gcSpreadSheet1.ActiveSheet.Charts.Add(chart);
Dim series0 As New GrapeCity.Xaml.SpreadSheet.Data.SpreadDataSeries() series0.Name = "Series 0" series0.Values.Add(1.0) series0.Values.Add(2.0) series0.Values.Add(4.0) series0.Values.Add(8.0) Dim label As New GrapeCity.Xaml.SpreadSheet.Data.ChartTitle() label.Text = "Pie Point Chart" label.FontSize = 10 label.FontFamily = New FontFamily("Tahoma") Dim l As New GrapeCity.Xaml.SpreadSheet.Data.Legend() l.Alignment = GrapeCity.Xaml.SpreadSheet.Data.LegendAlignment.TopLeft Dim chart As New GrapeCity.Xaml.SpreadSheet.Data.SpreadChart() chart.ChartTitle = label chart.Legend = l chart.DataSeries.Add(series0) ' chart.DataSeries.Add(series1) chart.ChartType = GrapeCity.Xaml.SpreadSheet.Data.SpreadChartType.Pie chart.Name = "name1" GcSpreadSheet1.ActiveSheet.Charts.Add(chart)
System.Object
   System.ValueType
      System.Enum
         GrapeCity.Xaml.SpreadSheet.Data.LegendAlignment
Target Platforms: Windows Server 2012, Windows RT