Class ChartAreaInfo
Represents the smith chart center point, radius and area bounds.
Inheritance
Namespace: Syncfusion.UI.Xaml.SmithChart
Assembly: Syncfusion.SfSmithChart.WPF.dll
Syntax
public class ChartAreaInfo : DependencyObject
Constructors
ChartAreaInfo()
Declaration
public ChartAreaInfo()
Fields
AreaBoundsProperty
Using a dependency property as the backing store for area bounds. This enables animation, styling, binding, etc...
Declaration
public static readonly DependencyProperty AreaBoundsProperty
Field Value
| Type |
|---|
| System.Windows.DependencyProperty |
CenterPointProperty
Using a dependency property as the backing store for center point. This enables animation, styling, binding, etc...
Declaration
public static readonly DependencyProperty CenterPointProperty
Field Value
| Type |
|---|
| System.Windows.DependencyProperty |
RadiusProperty
Using a dependency property as the backing store for radius. This enables animation, styling, binding, etc...
Declaration
public static readonly DependencyProperty RadiusProperty
Field Value
| Type |
|---|
| System.Windows.DependencyProperty |
Properties
AreaBounds
Gets the area bounds System.Windows.Rect region. This area bounds value is relative to the control.
Declaration
public Rect AreaBounds { get; }
Property Value
| Type | Description |
|---|---|
| System.Windows.Rect | This value can be rect and it return the area bounds of the smith chart. |
CenterPoint
Gets the center X and center Y value of the smith chart. This center point value is relative to the control.
Declaration
public Point CenterPoint { get; }
Property Value
| Type | Description |
|---|---|
| System.Windows.Point | This value can be point and it return the center point of the smith chart. |
Radius
Gets chart area circle radius value. This radius value is relative to the control.
Declaration
public double Radius { get; }
Property Value
| Type | Description |
|---|---|
| System.Double | This value can be double and it return the radius value of the smith chart. |