Spread Silverlight Documentation
CrossAt Property
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Axis Class : CrossAt Property
Gets or sets the value at which the axis crosses the perpendicular axis.
Syntax
'Declaration
 
Public Property CrossAt As System.Double
'Usage
 
Dim instance As Axis
Dim value As System.Double
 
instance.CrossAt = value
 
value = instance.CrossAt
public System.double CrossAt {get; set;}
Example
This example sets the CrossAt property.
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)
See Also

Reference

Axis Class
Axis Members