Class
ErrorBarShape

Represents the error bar visual.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

cs-api-definition
public class ErrorBarShape : Shape

Inheritance: objectErrorBarShape

Constructors

ErrorBarShape()

Initializes a new instance of the ErrorBarShape class.

Declaration

cs-api-definition
public ErrorBarShape()

Fields

CapLengthProperty

Identifies the CapLength property.

Declaration

cs-api-definition
public static readonly DependencyProperty CapLengthProperty

Field Value

DependencyProperty

MarkerSizeProperty

Identifies the MarkerSize property.

Declaration

cs-api-definition
public static readonly DependencyProperty MarkerSizeProperty

Field Value

DependencyProperty

ShowMarkerProperty

Identifies the ShowMarker property.

Declaration

cs-api-definition
public static readonly DependencyProperty ShowMarkerProperty

Field Value

DependencyProperty

Properties

CapLength

Gets or sets the length of the high and low caps of the visual. The size works with relative values between 0 and 1.

Declaration

cs-api-definition
public double CapLength { get; set; }

Property Value

double

DataPoint

Gets the data point this shape is representing.

Declaration

cs-api-definition
public ErrorBarDataPoint DataPoint { get; }

Property Value

ErrorBarDataPoint

The data point.

DefiningGeometry

Gets a value that represents the Geometry of the Shape.

Declaration

cs-api-definition
protected override Geometry DefiningGeometry { get; }

Property Value

Geometry

The Geometry of the Shape.

MarkerSize

Gets or sets the marker size of the visual. The size works with absolute values. If set to null, the marker is measured dynamically with the cap length.

Declaration

cs-api-definition
public Size? MarkerSize { get; set; }

Property Value

Size?

ShowMarker

Determines whether the value mark of the visual should be displayed or not.

Declaration

cs-api-definition
public bool ShowMarker { get; set; }

Property Value

bool

Methods

GetLayoutClip(Size)

Returns a geometry for a clipping mask. The mask applies if the layout system attempts to arrange an element that is larger than the available display space.

The size of the part of the element that does visual presentation. The clipping geometry.

Declaration

cs-api-definition
protected override Geometry GetLayoutClip(Size layoutSlotSize)

Parameters

layoutSlotSize

Size

Returns

Geometry