In This Article

IMicroXYAxis Interface

Provides the base requirements for a axis used by a MicroXYChart.

public interface IMicroXYAxis

Properties

Baseline

Gets the baseline value for the axis.

object Baseline { get; }

Property Value

object:

The baseline value for the axis.

Maximum

Gets the maximum value of the axis.

object Maximum { get; }

Property Value

object:

The maximum value of the axis.

Minimum

Gets the minimum value of the axis.

object Minimum { get; }

Property Value

object:

The minimum value of the axis.

SlotCount

Gets the number of slots for data points of the axis when using slotted layout.

int SlotCount { get; }

Property Value

int:

The number of slots for data points of the axis when using slotted layout.

Methods

GetPercentagePosition(object, object)

Gets a plot coordinate for the specified value using it's overall percentage for the given key.

double GetPercentagePosition(object key, object value)
Parameter Type Description
key object

The key associated with the specified value.

value object

The value whose position should be returned.

Returns

double:

A plot coordinate for the specified value using it's overall percentage for the given key.

GetPosition(object)

Gets a plot coordinate for the specified value.

double GetPosition(object value)
Parameter Type Description
value object

The value whose position should be returned.

Returns

double:

A plot coordinate for the specified value.

GetValue(double)

Gets a value for the specified plot coordinate.

object GetValue(double position)
Parameter Type Description
position double

A plot coordinate whose value should be returned.

Returns

object:

A value for the specified plot coordinate.