abstract objectType Axis
The abstract parent class for all coordinate axis types. We provide concrete classes for the most common types of data, Continuous, Binned, and Discrete, but allow extension for other types as needed.
classDiagram
class Axis{
ivoa:string name
}
ContinuousAxis --|> Axis
BinnedAxis --|> Axis
DiscreteSetAxis --|> Axis
link ContinuousAxis "../ContinuousAxis"
link BinnedAxis "../BinnedAxis"
link DiscreteSetAxis "../DiscreteSetAxis"
Members
name | type | mult | description |
---|---|---|---|
name | ivoa:string | optional | Freeform string, provides the name or label for the axis. |
Containment
This is contained by CoordSpace