Spread for ASP.NET 10 Product Documentation
CanMove Property (SpreadChart)
Example 


Gets or sets whether the chart can be moved.
Syntax
'Declaration
 
Public Overridable Property CanMove As Boolean
'Usage
 
Dim instance As SpreadChart
Dim value As Boolean
 
instance.CanMove = value
 
value = instance.CanMove
public virtual bool CanMove {get; set;}
Remarks
This property indicates whether the user can move the current chart at run time.
Example
This example sets the CanMove 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.CanMove = 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.CanMove = False
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

SpreadChart Class
SpreadChart Members

 

 


Copyright © GrapeCity, inc. All rights reserved.