Spread Silverlight Documentation
ShowBarOnly Property (DataBarRule)
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > DataBarRule Class : ShowBarOnly Property
Gets or sets whether to show the bar.
Syntax
'Declaration
 
<System.ComponentModel.DefaultValueAttribute()>
Public Property ShowBarOnly As System.Boolean
'Usage
 
Dim instance As DataBarRule
Dim value As System.Boolean
 
instance.ShowBarOnly = value
 
value = instance.ShowBarOnly
[System.ComponentModel.DefaultValue()]
public System.bool ShowBarOnly {get; set;}
Example
This example sets the ShowBarOnly property.
gcSpreadSheet1.Sheets[0].Cells[0, 0].Value = 1;
gcSpreadSheet1.Sheets[0].Cells[1, 0].Value = 10;
gcSpreadSheet1.Sheets[0].Cells[2, 0].Value = 6;
gcSpreadSheet1.Sheets[0].Cells[3, 0].Value = -3; 

GrapeCity.Windows.SpreadSheet.Data.DataBarRule test = new GrapeCity.Windows.SpreadSheet.Data.DataBarRule();
test.Color = Colors.Magenta;
test.ShowBarOnly = true;
test.Ranges = new GrapeCity.Windows.SpreadSheet.Data.CellRange[] { new GrapeCity.Windows.SpreadSheet.Data.CellRange(0, 0, 5, 1) };
gcSpreadSheet1.Sheets[0].ConditionalFormats.AddRule(test); 
GcSpreadSheet1.Sheets(0).Cells(0, 0).Value = 1
GcSpreadSheet1.Sheets(0).Cells(1, 0).Value = 10
GcSpreadSheet1.Sheets(0).Cells(2, 0).Value = 6
GcSpreadSheet1.Sheets(0).Cells(3, 0).Value = -3

Dim test As New GrapeCity.Windows.SpreadSheet.Data.DataBarRule()
test.Color = Colors.Magenta
test.ShowBarOnly = True
test.Ranges = New GrapeCity.Windows.SpreadSheet.Data.CellRange() {New GrapeCity.Windows.SpreadSheet.Data.CellRange(0, 0, 5, 1)}
GcSpreadSheet1.Sheets(0).ConditionalFormats.AddRule(test)
See Also

Reference

DataBarRule Class
DataBarRule Members