GrapeCity.Xaml.SpreadSheet.Data
DisplayXAxis Property
Example 


GrapeCity.Xaml.SpreadSheet.Data Namespace > SparklineSetting Class : DisplayXAxis Property
Gets or sets a value that indicates whether the horizontal axis is displayed for each sparkline in this sparkline group.
Syntax
'Declaration
 
<DefaultValueAttribute()>
Public Property DisplayXAxis As Boolean
'Usage
 
Dim instance As SparklineSetting
Dim value As Boolean
 
instance.DisplayXAxis = value
 
value = instance.DisplayXAxis
[DefaultValue()]
public bool DisplayXAxis {get; set;}

Property Value

true to display the horizontal axis; otherwise, false.
Example
This example uses the DisplayXAxis property.
GrapeCity.Xaml.SpreadSheet.Data.CellRange cellr2 = new GrapeCity.Xaml.SpreadSheet.Data.CellRange(1, 0, 1, 4);
GrapeCity.Xaml.SpreadSheet.Data.SparklineSetting ex = new GrapeCity.Xaml.SpreadSheet.Data.SparklineSetting();
ex.DisplayEmptyCellsAs = GrapeCity.Xaml.SpreadSheet.Data.EmptyValueStyle.Zero;
ex.DisplayXAxis = true;
gcSpreadSheet1.Sheets[0].Cells[1, 0].Value = 5;
gcSpreadSheet1.Sheets[0].Cells[1, 1].Value = 3;
gcSpreadSheet1.Sheets[0].Cells[1, 3].Value = 4;
gcSpreadSheet1.Sheets[0].SetSparkline(1, 5, cellr2, GrapeCity.Xaml.SpreadSheet.Data.DataOrientation.Horizontal, GrapeCity.Xaml.SpreadSheet.Data.SparklineType.Line, ex);
Dim cellr2 As New GrapeCity.Xaml.SpreadSheet.Data.CellRange(1, 0, 1, 4)
Dim ex As New GrapeCity.Xaml.SpreadSheet.Data.SparklineSetting()
ex.DisplayEmptyCellsAs = GrapeCity.Xaml.SpreadSheet.Data.EmptyValueStyle.Zero
ex.DisplayXAxis = True
GcSpreadSheet1.Sheets(0).Cells(1, 0).Value = 5
GcSpreadSheet1.Sheets(0).Cells(1, 1).Value = 3
GcSpreadSheet1.Sheets(0).Cells(1, 3).Value = 4
GcSpreadSheet1.Sheets(0).SetSparkline(1, 5, cellr2, GrapeCity.Xaml.SpreadSheet.Data.DataOrientation.Horizontal, GrapeCity.Xaml.SpreadSheet.Data.SparklineType.Line, ex)
See Also

Reference

SparklineSetting Class
SparklineSetting Members