Gets or sets the CSS class name for the selected SpreadChart.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public Property SelectedCssClass As String  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As SpreadChart
Dim value As String
 
instance.SelectedCssClass = value
 
value = instance.SelectedCssClass  | 
 
| C# |   | 
|---|
public string SelectedCssClass {get; set;} | 
 
            
            
             
            
			
			
            
            
            
Example
This example sets the SelectedCssClass property.
             
| C# |  Copy Code | 
|---|
FpSpread1.Sheets[0].AddChart(0, 0, typeof(FarPoint.Web.Chart.BarSeries), 300, 300, 0, 0, FarPoint.Web.Chart.ChartViewType.View2D, true);
FarPoint.Web.Spread.Chart.SpreadChart chart = FpSpread1.Sheets[0].Charts[0];        
chart.Formula = " Sheet1!$A$1:$D$7";
chart.SelectedCssClass = "selectedChart";  | 
 
| Visual Basic |  Copy Code | 
|---|
FpSpread1.Sheets(0).AddChart(0, 0, GetType(FarPoint.Web.Chart.BarSeries), 300, 300, 0, 0, FarPoint.Web.Chart.ChartViewType.View2D, True)
Dim chart As FarPoint.Web.Spread.Chart.SpreadChart
chart = FpSpread1.Sheets(0).Charts(0)
chart.Formula = " Sheet1!$A$1:$D$7"
chart.SelectedCssClass = "selectedChart"  | 
 
 
            
            
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
 
            
            
See Also