Struct
RadCircle

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:

cs-api-definition
public struct RadCircle

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

Constructors

RadCircle(RadPoint, double)

Initializes a new instance of the RadCircle struct.

Declaration

cs-api-definition
public RadCircle(RadPoint center, double radius)

Parameters

center

RadPoint

The center point of the circle.

radius

double

The radius of the circle.

Fields

Center

The center of the circle.

Declaration

cs-api-definition
public RadPoint Center

Field Value

RadPoint

Radius

The radius of the circle.

Declaration

cs-api-definition
public double Radius

Field Value

double

Properties

Bounds

Gets the bounding rectangle that completely encloses this circle.

Declaration

cs-api-definition
public RadRect Bounds { get; }

Property Value

RadRect

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