In This Article

IMicroXYAxis Interface

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

public interface IMicroXYAxis

Properties

Baseline

The baseline value for the axis.

object? Baseline { get; }

Property Value

object

Maximum

The maximum value of the axis.

object? Maximum { get; }

Property Value

object

Minimum

The minimum value of the axis.

object? Minimum { get; }

Property Value

object

SlotCount

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

int SlotCount { get; }

Property Value

int

Methods

GetPercentagePosition(object, object)

Returns 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

GetPosition(object)

Returns 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

GetValue(double)

Returns 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

Extension Methods