GrapeCity.Xaml.SpreadSheet.Data Namespace : MarkerType Enumeration |
'Declaration Public Enum MarkerType Inherits System.Enum
'Usage Dim instance As MarkerType
public enum MarkerType : System.Enum
Member | Description |
---|---|
Automatic | The marker type is generated automatically. |
Box | Specifies the box type. |
Circle | Specifies the circle type. |
Cross | Specifies the cross type. |
DiagonalCross | Specifies the diagonal cross type. |
Diamond | Specifies the diamond type. |
Dot | Specifies the dot type. |
None | Specifies none. |
Star4 | Specifies the star4 type. |
Star8 | Specifies the star8 type. |
Triangle | Specifies the triangle type. |
//only for line charts. GrapeCity.Xaml.SpreadSheet.Data.SpreadChart chart = new GrapeCity.Xaml.SpreadSheet.Data.SpreadChart("Chart", GrapeCity.Xaml.SpreadSheet.Data.SpreadChartType.Line, 0, 0, 200, 200); GrapeCity.Xaml.SpreadSheet.Data.SpreadDataSeries ds = new GrapeCity.Xaml.SpreadSheet.Data.SpreadDataSeries(); ds.Values.Add(4); ds.Values.Add(7); ds.Values.Add(6); ds.Values.Add(10); ds.Values.Add(4); //dataSeries level ds.MarkerSize = new Size(15, 15); ds.MarkerType = GrapeCity.Xaml.SpreadSheet.Data.MarkerType.Diamond; ds.DataMarkerStyle.Fill = new SolidColorBrush(Windows.UI.Colors.Green); ds.DataMarkerStyle.Stroke = new SolidColorBrush(Windows.UI.Colors.Blue); ds.DataMarkerStyle.StrokeDashType = GrapeCity.Xaml.SpreadSheet.Data.StrokeDashType.Dash; ds.DataMarkerStyle.StrokeThickness = 2; //data marker level ds.GetDataMarker(2).Fill = new SolidColorBrush(Windows.UI.Colors.Orange); ds.GetDataMarker(2).Stroke = new SolidColorBrush(Windows.UI.Colors.Yellow); ds.GetDataMarker(2).StrokeDashType = GrapeCity.Xaml.SpreadSheet.Data.StrokeDashType.Dash; ds.GetDataMarker(2).StrokeThickness = 4; ds.GetDataMarker(2).MarkerSize = new Size(20, 20); chart.ChartType = GrapeCity.Xaml.SpreadSheet.Data.SpreadChartType.Scatter; chart.DataSeries.Add(ds); gcSpreadSheet1.ActiveSheet.Charts.Add(chart);
Dim chart As New GrapeCity.Xaml.SpreadSheet.Data.SpreadChart("Chart", GrapeCity.Xaml.SpreadSheet.Data.SpreadChartType.Line, 0, 0, 200, 200) Dim ds As New GrapeCity.Xaml.SpreadSheet.Data.SpreadDataSeries() ds.Values.Add(4) ds.Values.Add(7) ds.Values.Add(6) ds.Values.Add(10) ds.Values.Add(4) 'dataSeries level ds.MarkerSize = New Size(15, 15) ds.MarkerType = GrapeCity.Xaml.SpreadSheet.Data.MarkerType.Diamond ds.DataMarkerStyle.Fill = New SolidColorBrush(Windows.UI.Colors.Green) ds.DataMarkerStyle.Stroke = New SolidColorBrush(Windows.UI.Colors.Blue) ds.DataMarkerStyle.StrokeDashType = GrapeCity.Xaml.SpreadSheet.Data.StrokeDashType.Dash ds.DataMarkerStyle.StrokeThickness = 2 'data marker level ds.GetDataMarker(2).Fill = New SolidColorBrush(Windows.UI.Colors.Orange) ds.GetDataMarker(2).Stroke = New SolidColorBrush(Windows.UI.Colors.Yellow) ds.GetDataMarker(2).StrokeDashType = GrapeCity.Xaml.SpreadSheet.Data.StrokeDashType.Dash ds.GetDataMarker(2).StrokeThickness = 4 ds.GetDataMarker(2).MarkerSize = New Size(20, 20) chart.ChartType = GrapeCity.Xaml.SpreadSheet.Data.SpreadChartType.Scatter chart.DataSeries.Add(ds) GcSpreadSheet1.ActiveSheet.Charts.Add(chart)
System.Object
System.ValueType
System.Enum
GrapeCity.Xaml.SpreadSheet.Data.MarkerType
Target Platforms: Windows Server 2012, Windows RT