Spread for ASP.NET 11 Product Documentation
SelectedCssClass Property
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Chart Namespace > SpreadChart Class : SelectedCssClass Property
Gets or sets the CSS class name for the selected SpreadChart.
Syntax
'Declaration
 
Public Property SelectedCssClass As String
'Usage
 
Dim instance As SpreadChart
Dim value As String
 
instance.SelectedCssClass = value
 
value = instance.SelectedCssClass
public string SelectedCssClass {get; set;}
Example
This example sets the SelectedCssClass property.
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";
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"
See Also

Reference

SpreadChart Class
SpreadChart Members