.netCHARTING v10.5 Documentation


dotnetCHARTING Namespace > ChartArea Class : GridPosition Property
GridPosition Property
Gets or sets the layout column and row position of this ChartArea.
Syntax
'Declaration
 
Public Property GridPosition As Point
'Usage
 
Dim instance As ChartArea
Dim value As Point
 
instance.GridPosition = value
 
value = instance.GridPosition
public Point GridPosition {get; set;}
Remarks

The default (top-left) position is 0,0. To place another ChartArea to the right of it, the position would be 1,0.

The format is: ( Column, Row ) or ( X , Y )

Example
ChartArea.GridPosition = new Point(1,0);
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also