Class ErrorBarShape
Represents the error bar visual.
Inheritance
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class ErrorBarShape : Path
Constructors
ErrorBarShape()
Fields
CapLengthProperty
Identifies the CapLength property.
Declaration
public static readonly DependencyProperty CapLengthProperty
Field Value
System.Windows.DependencyProperty
|
MarkerSizeProperty
Identifies the MarkerSize property.
Declaration
public static readonly DependencyProperty MarkerSizeProperty
Field Value
System.Windows.DependencyProperty
|
ShowMarkerProperty
Identifies the ShowMarker property.
Declaration
public static readonly DependencyProperty ShowMarkerProperty
Field Value
System.Windows.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
public double CapLength { get; set; }
Property Value
System.Double
|
DataPoint
Gets the data point this shape is representing.
Declaration
public ErrorBarDataPoint DataPoint { get; }
Property Value
ErrorBarDataPoint
The data point. |
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
public Nullable<Size> MarkerSize { get; set; }
Property Value
System.Nullable<System.Windows.Size>
|
ShowMarker
Determines whether the value mark of the visual should be displayed or not.
Declaration
public bool ShowMarker { get; set; }
Property Value
System.Boolean
|