GrapeCity.Xaml.SpreadSheet.Data
CanSwitchRowColumn Property
Example 


Gets a value that indicates whether the user can switch the rows and columns of the chart.
Syntax
'Declaration
 
Public ReadOnly Property CanSwitchRowColumn As Boolean
'Usage
 
Dim instance As SpreadChart
Dim value As Boolean
 
value = instance.CanSwitchRowColumn
public bool CanSwitchRowColumn {get;}

Property Value

true if user can switch rows and columns of the chart; otherwise, false.
Remarks
This sets whether the user can switch the row and column on the chart.
Example
This example gets the CanSwitchRowColumn property.
GcSpreadSheet1.ActiveSheet.SetArray(0, 0, new object[,] { { 1 }, { 2 }, { 3 }, { 4 }, { 5 }, { 6 }, { 7 }, { 8 }, { 9 }, { 10 } });
GrapeCity.Xaml.SpreadSheet.Data.SpreadChart chart = new GrapeCity.Xaml.SpreadSheet.Data.SpreadChart("Chart", GrapeCity.Xaml.SpreadSheet.Data.SpreadChartType.BarStacked, "Sheet1!$A$1:$A$7", 0, 0, 300, 300);
GcSpreadSheet1.ActiveSheet.Charts.Add(chart);
if (chart.CanSwitchRowColumn)
 chart.SwitchRowColumn();
GcSpreadSheet1.ActiveSheet.SetArray(0, 0, New Object(,) {{1}, {2}, {3}, {4}, {5}, {6}, {7}, {8}, {9}, {10}})
Dim chart As New GrapeCity.Xaml.SpreadSheet.Data.SpreadChart("Chart", GrapeCity.Xaml.SpreadSheet.Data.SpreadChartType.BarStacked, "Sheet1!$A$1:$A$7", 0, 0, 300, 300)
GcSpreadSheet1.ActiveSheet.Charts.Add(chart)
If (chart.CanSwitchRowColumn) Then
chart.SwitchRowColumn()
End If
Requirements

Target Platforms: Windows Server 2012, Windows RT

See Also

Reference

SpreadChart Class
SpreadChart Members

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options