In This Article

CircularTickMarkMajor Class

Represents an element that renders major tick marks in a CircularGauge.

public class CircularTickMarkMajor : CircularTickMarkBase, ILogicalParent, IVisualParent
Inheritance:
object Visual UIElement FrameworkElement GaugeElement TickBase CircularTickBase CircularTickMarkBase object
Implements:
ILogicalParent IVisualParent

Constructors

CircularTickMarkMajor()

Initializes an instance of the class.

public CircularTickMarkMajor()

Properties

EndValue

The last value that should be rendered.

public double EndValue { get; set; }

Property Value

double:

The default value is double.NaN.

MaximumTickVisibility

A value indicating whether a tick should be rendered at the maximum value.

public TickVisibility MaximumTickVisibility { get; set; }

Property Value

TickVisibility:

The default value is Always.

Remarks

The SkipValues property takes precedence over this property.

MinimumTickVisibility

A value indicating whether a tick should be rendered at the minimum value.

public TickVisibility MinimumTickVisibility { get; set; }

Property Value

TickVisibility:

The default value is Always.

Remarks

The SkipValues property takes precedence over this property.

SkipValues

The values that should not be rendered.

public DoubleCollection? SkipValues { get; set; }

Property Value

DoubleCollection

StartValue

The first value that should be rendered.

public double StartValue { get; set; }

Property Value

double:

The default value is double.NaN.

Methods

GetValues()

Returns the values to be rendered by this tick mark element.

protected override DoubleCollection? GetValues()

Returns

DoubleCollection

Fields

EndValueProperty

Defines the EndValue property.

public static readonly DependencyProperty EndValueProperty

MaximumTickVisibilityProperty

Defines the MaximumTickVisibility property.

public static readonly DependencyProperty MaximumTickVisibilityProperty

MinimumTickVisibilityProperty

Defines the MinimumTickVisibility property.

public static readonly DependencyProperty MinimumTickVisibilityProperty

SkipValuesProperty

Defines the SkipValues property.

public static readonly DependencyProperty SkipValuesProperty

StartValueProperty

Defines the StartValue property.

public static readonly DependencyProperty StartValueProperty

Inherited Members

Extension Methods