IMicroXYAxis Interface
Provides the base requirements for a axis used by a MicroXYChart.
public interface IMicroXYAxis
Properties
Baseline
The baseline value for the axis.
Maximum
The maximum value of the axis.
Minimum
The minimum value of the axis.
SlotCount
The number of slots for data points of the axis when using slotted layout.
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
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
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. |