Spread for ASP.NET 11 Product Documentation
CanSelect Property (SpreadChart)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Chart Namespace > SpreadChart Class : CanSelect Property
Gets or sets whether the chart can be selected.
Syntax
'Declaration
 
Public Overridable Property CanSelect As Boolean
'Usage
 
Dim instance As SpreadChart
Dim value As Boolean
 
instance.CanSelect = value
 
value = instance.CanSelect
public virtual bool CanSelect {get; set;}
Remarks
This property indicates whether the user can select the current chart at run time. If this property is false, the user cannot move or resize the current chart.
Example
This example sets the CanSelect 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.CanSelect = false;
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.CanSelect = False
See Also

Reference

SpreadChart Class
SpreadChart Members