MindFusion.Charting Programmer's Guide

Chart.TopLeftPosition Property

See Also
 





Specifies the position of the chart in the graphics object.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public PointF TopLeftPosition { get; set; }

Visual Basic  Copy Code

Public Property TopLeftPosition As PointF

 Property Value

An instance of the .NET PointF structure. Default value for the TopLeftPosition property is (0,0).

 Remarks

The property enables you to draw a chart at a position different from the top left corner of the graphics object's bounding rectangle.

Note

The position of the chart does not change its size, when calculated by CalculateSize.

Provide larger graphics object if you are not going to position the chart in it at (0, 0).

 See Also