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

Represents the error bar visual.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public class ErrorBarShape : Shape

Inheritance: objectErrorBarShape

Constructors

Initializes a new instance of the ErrorBarShape class.

C#
public ErrorBarShape()

Fields

CapLengthProperty

DependencyProperty

Identifies the CapLength property.

C#
public static readonly DependencyProperty CapLengthProperty

MarkerSizeProperty

DependencyProperty

Identifies the MarkerSize property.

C#
public static readonly DependencyProperty MarkerSizeProperty

ShowMarkerProperty

DependencyProperty

Identifies the ShowMarker property.

C#
public static readonly DependencyProperty ShowMarkerProperty

Properties

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

C#
public double CapLength { get; set; }

Gets the data point this shape is representing.

C#
public ErrorBarDataPoint DataPoint { get; }
Property Value:

The data point.

Gets a value that represents the Geometry of the Shape.

C#
protected override Geometry DefiningGeometry { get; }
Property Value:

The Geometry of the Shape.

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.

C#
public Size? MarkerSize { get; set; }

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

C#
public bool ShowMarker { get; set; }

Methods

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.
C#
protected override Geometry GetLayoutClip(Size layoutSlotSize)
Parameters:layoutSlotSizeSizeReturns:

Geometry