Spread WPF Documentation
AxisPosition Enumeration
Example Example 


Specifies the axis position.
Syntax
public enum AxisPosition : System.Enum 
'Declaration
 
Public Enum AxisPosition 
   Inherits System.Enum
 
'Usage
 
Dim instance As AxisPosition
Members
MemberDescription
FarSpecifies that the position is far.
NearSpecifies that the position is near.
Example
This example sets the AxisPosition enumeration.
GrapeCity.Windows.SpreadSheet.Data.SpreadChart chart = new GrapeCity.Windows.SpreadSheet.Data.SpreadChart("Chart", GrapeCity.Windows.SpreadSheet.Data.SpreadChartType.BarStacked, "Sheet1!$A$1:$A$7", 0,0, 200, 200);
gcSpreadSheet1.ActiveSheet.SetArray(0, 0, new object[,] { { 1 }, { 2 }, { 3 }, { 4 }, { 5 }, { 6 }, { 7 }, { 8 }, { 9 }, { 10 } });
//chart.AxisX.AxisPosition = AxisPosition.Far;
chart.AxisX.CrossAt = 3;
//chart.AxisY.CrossAt = 3;
gcSpreadSheet1.ActiveSheet.Charts.Add(chart);
Dim chart As New GrapeCity.Windows.SpreadSheet.Data.SpreadChart("Chart", GrapeCity.Windows.SpreadSheet.Data.SpreadChartType.BarStacked, "Sheet1!$A$1:$A$7", 0,0, 200, 200)
gcSpreadSheet1.ActiveSheet.SetArray(0, 0, new object(,) { { 1 }, { 2 }, { 3 }, { 4 }, { 5 }, { 6 }, { 7 }, { 8 }, { 9 }, { 10 } })
'chart.AxisX.AxisPosition = AxisPosition.Far
chart.AxisX.CrossAt = 3
'chart.AxisY.CrossAt = 3
gcSpreadSheet1.ActiveSheet.Charts.Add(chart)
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         GrapeCity.Windows.SpreadSheet.Data.AxisPosition

Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)

See Also

Reference

GrapeCity.Windows.SpreadSheet.Data Namespace

 

 


Copyright © GrapeCity, inc. All rights reserved.