Gets or sets the position of this box.
[Visual Basic]
Public Overridable Property Position As Object
[C#]
public virtual object Position {get; set;}
Return Type
TitleBoxPosition, LegendBoxPosition enumeration, or Point.
Example
Show 3 uses of the property.
[Visual Basic]
Chart.TitleBox.Position = TitleBoxPosition.FullWithLegend
Chart.LegendBox.Position = LegendBoxPosition.Top
Chart.LegendBox.Position = New Point(10,15)
|
[C#]
//Title position Chart.TitleBox.Position = TitleBoxPosition.FullWithLegend; //Legend box position Chart.LegendBox.Position = LegendBoxPosition.Top; //Absolute legend position in pixels Chart.LegendBox.Position = New Point(10,15); |
See Also
Box Class
| Box Members
2002 - 2005 Webavail Productions Inc. & Corporate Web Solutions Ltd.. All Rights Reserved.