New to Telerik UI for WinFormsStart a free 30-day trial

RadCircle

Struct

Represents a circle defined by a center point and radius, providing geometric operations for charting applications.

Definition

Namespace:Telerik.Charting

Assembly:Telerik.WinControls.dll

Syntax:

C#
public struct RadCircle

Inherited Members ValueType.Equals(object)ValueType.GetHashCode()ValueType.ToString()

Constructors

Initializes a new instance of the RadCircle struct.

C#
public RadCircle(RadPoint center, double radius)
Parameters:centerRadPoint

The center point of the circle.

radiusdouble

The radius of the circle.

Fields

The center of the circle.

C#
public RadPoint Center

The radius of the circle.

C#
public double Radius

Properties

Gets the bounding rectangle that completely encloses this circle.

C#
public RadRect Bounds { get; }
Property Value:

A RadRect representing the smallest rectangle that contains the entire circle.