Interface IAxis
An axis interface used to determine the plot area coordinate of values.
Namespace: System.Windows.Controls.DataVisualization.Charting
Assembly: Controls.DataVisualization.OpenSilver.dll
Syntax
public interface IAxis
Properties
| Improve this Doc View SourceDependentAxes
Gets the collection of child axes.
Declaration
ObservableCollection<IAxis> DependentAxes { get; }
Property Value
Type | Description |
---|---|
ObservableCollection<IAxis> |
Orientation
Gets or sets the orientation of the axis.
Declaration
AxisOrientation Orientation { get; set; }
Property Value
Type | Description |
---|---|
AxisOrientation |
RegisteredListeners
Gets the registered IAxisListeners.
Declaration
ObservableCollection<IAxisListener> RegisteredListeners { get; }
Property Value
Type | Description |
---|---|
ObservableCollection<IAxisListener> |
Methods
| Improve this Doc View SourceCanPlot(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. |
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 SourceOrientationChanged
This event is raised when the Orientation property is changed.
Declaration
event RoutedPropertyChangedEventHandler<AxisOrientation> OrientationChanged
Event Type
Type | Description |
---|---|
RoutedPropertyChangedEventHandler<AxisOrientation> |