In This Article

XYDoubleAxis Class

Represents an axis for data in Double format.

public class XYDoubleAxis : XYAxisBase, DUCE.IResource, IAnimatable, IFrameworkInputElement, IInputElement, ISupportInitialize, IHaveResources, IQueryAmbient, IRefreshable
Inheritance:
Object DispatcherObject DependencyObject Visual UIElement FrameworkElement Control XYAxisBase Object

Constructors

XYDoubleAxis()

Creates a new XYDoubleAxis.

public XYDoubleAxis()

Properties

Baseline

The baseline value for the axis.

public double Baseline { get; set; }

Property Value

Double

LabelFunc

Gets or sets the function used to determine axis labels. When set, LabelFormat will be ignored. Normally, the first and second parameters of the function will be the value of the axis point represented by the label. When used on the secondary axis on a Bar Series, the first parameter will represent the starting value of a given slot on the axis, and the second parameter will represent the ending value of a given slot on the axis.

public Func<double, double, string> LabelFunc { get; set; }

Property Value

Func<Double, Double, String>:

The function used to determine axis labels.

Maximum

The maximum value of the axis.

public double Maximum { get; set; }

Property Value

Double

Minimum

The minimum value of the axis.

public double Minimum { get; set; }

Property Value

Double

SlotInterval

The slot interval for data points of the axis when using slotted layout.

public double SlotInterval { get; set; }

Property Value

Double

TickMajorInterval

The interval at which to display major ticks.

public double TickMajorInterval { get; set; }

Property Value

Double

TickMinorInterval

The interval at which to display minor ticks.

public double TickMinorInterval { get; set; }

Property Value

Double

Fields

BaselineProperty

Identifies the Baseline dependency property. This field is read-only.

public static readonly DependencyProperty BaselineProperty

LabelFuncProperty

Identifies the LabelFunc dependency property. This field is read-only.

public static readonly DependencyProperty LabelFuncProperty

MaximumProperty

Identifies the Maximum dependency property. This field is read-only.

public static readonly DependencyProperty MaximumProperty

MinimumProperty

Identifies the Minimum dependency property. This field is read-only.

public static readonly DependencyProperty MinimumProperty

SlotIntervalProperty

Identifies the SlotInterval dependency property. This field is read-only.

public static readonly DependencyProperty SlotIntervalProperty

TickMajorIntervalProperty

Identifies the TickMajorInterval dependency property. This field is read-only.

public static readonly DependencyProperty TickMajorIntervalProperty

TickMinorIntervalProperty

Identifies the TickMinorInterval dependency property. This field is read-only.

public static readonly DependencyProperty TickMinorIntervalProperty

Inherited Members

Extension Methods