Show / Hide Table of Contents

Interface IAxis

An axis interface used to determine the plot area coordinate of values.

Namespace: System.Windows.Controls.DataVisualization.Charting
Assembly: OpenSilver.Controls.DataVisualization.Toolkit.dll
Syntax
public interface IAxis

Properties

| Improve this Doc View Source

DependentAxes

Gets the collection of child axes.

Declaration
ObservableCollection<IAxis> DependentAxes { get; }
Property Value
Type Description
System.Collections.ObjectModel.ObservableCollection<IAxis>
| Improve this Doc View Source

Orientation

Gets or sets the orientation of the axis.

Declaration
AxisOrientation Orientation { get; set; }
Property Value
Type Description
AxisOrientation
| Improve this Doc View Source

RegisteredListeners

Gets the registered IAxisListeners.

Declaration
ObservableCollection<IAxisListener> RegisteredListeners { get; }
Property Value
Type Description
System.Collections.ObjectModel.ObservableCollection<IAxisListener>

Methods

| Improve this Doc View Source

CanPlot(Object)

Returns a value indicating whether the axis can plot a value.

Declaration
bool CanPlot(object value)
Parameters
Type Name Description
System.Object value

The value to plot.

Returns
Type Description
System.Boolean

A value indicating whether the axis can plot a value.

| Improve this Doc View Source

GetPlotAreaCoordinate(Object)

The plot area coordinate of a value.

Declaration
UnitValue GetPlotAreaCoordinate(object value)
Parameters
Type Name Description
System.Object value

The value for which to retrieve the plot area coordinate.

Returns
Type Description
UnitValue

The plot area coordinate.

Events

| Improve this Doc View Source

OrientationChanged

This event is raised when the Orientation property is changed.

Declaration
event RoutedPropertyChangedEventHandler<AxisOrientation> OrientationChanged
Event Type
Type Description
RoutedPropertyChangedEventHandler<AxisOrientation>
  • Improve this Doc
  • View Source