ElementPosition Constructors

Definition

Initializes a new instance of the ElementPosition class.

Overloads

ElementPosition()

Initializes a new instance of the ElementPosition class.

ElementPosition(Single, Single, Single, Single)

Initializes a new instance of the ElementPosition class with the specified x, y, width and height parameters.

ElementPosition()

Initializes a new instance of the ElementPosition class.

public:
 ElementPosition();
public ElementPosition ();
Public Sub New ()

Applies to

ElementPosition(Single, Single, Single, Single)

Initializes a new instance of the ElementPosition class with the specified x, y, width and height parameters.

public:
 ElementPosition(float x, float y, float width, float height);
public ElementPosition (float x, float y, float width, float height);
new System.Web.UI.DataVisualization.Charting.ElementPosition : single * single * single * single -> System.Web.UI.DataVisualization.Charting.ElementPosition
Public Sub New (x As Single, y As Single, width As Single, height As Single)

Parameters

x
Single

The relative X-coordinate of the top-left corner of an applicable chart element.

y
Single

The relative Y-coordinate of the top-left corner of an applicable chart element.

width
Single

The width of the chart element.

height
Single

The height of the chart element.

Applies to