c

swiftvis2.plotting

NumericAxis

case class NumericAxis(key: String, min: Option[Double] = None, max: Option[Double] = None, tickSpacing: Option[Double] = None, tickStyle: Axis.TickStyle.Value = Axis.TickStyle.Both, tickLabelInfo: Option[LabelSettings] = None, name: Option[NameSettings] = None, displaySide: Axis.DisplaySide.Value = Axis.DisplaySide.Min, style: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear) extends Axis with Product with Serializable

An axis type that displays a numeric scaling. The values are auto-scaled when values for the minimum or maximum aren't provided. If no tick spacing is provided, it will pick a "nice" spacing that gives 5-6 ticks in the range displayed. Axes can be set to display on the minimum or maximum side of a plot, and they can be linear or logarithmic. Note that when you use a logarithmic scale, the tickSpacing will be ignored, even if it is provided.

Linear Supertypes
Serializable, Serializable, Product, Equals, Axis, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NumericAxis
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Axis
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NumericAxis(key: String, min: Option[Double] = None, max: Option[Double] = None, tickSpacing: Option[Double] = None, tickStyle: Axis.TickStyle.Value = Axis.TickStyle.Both, tickLabelInfo: Option[LabelSettings] = None, name: Option[NameSettings] = None, displaySide: Axis.DisplaySide.Value = Axis.DisplaySide.Min, style: Axis.ScaleStyle.Value = Axis.ScaleStyle.Linear)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def asMaxSideXAxis: NumericAxis

    Sets the rotations and display side to the default of a max-side X-axis.

    Sets the rotations and display side to the default of a max-side X-axis.

    returns

    Modified axis.

  6. def asMaxSideYAxis: NumericAxis

    Sets the rotations and display side to the default of a max-side Y-axis.

    Sets the rotations and display side to the default of a max-side Y-axis.

    returns

    Modified axis.

  7. def asMinSideXAxis: NumericAxis

    Sets the rotations and display side to the default of a min-side X-axis.

    Sets the rotations and display side to the default of a min-side X-axis.

    returns

    Modified axis.

  8. def asMinSideYAxis: NumericAxis

    Sets the rotations and display side to the default of a min-side Y-axis.

    Sets the rotations and display side to the default of a min-side Y-axis.

    returns

    Modified axis.

  9. def autoMax: NumericAxis

    Gives back a new axis with a max that is automatically set by the data.

    Gives back a new axis with a max that is automatically set by the data.

    returns

    Modified axis.

  10. def autoMin: NumericAxis

    Gives back a new axis with a min that is automatically set by the data.

    Gives back a new axis with a min that is automatically set by the data.

    returns

    Modified axis.

  11. def autoTickSpacing: NumericAxis

    Gives back an updated axis where the spacing between tick marks is determined automatically.

    Gives back an updated axis where the spacing between tick marks is determined automatically.

    returns

    Modified axis.

  12. def calcTickLocations(amin: Double, amax: Double): Seq[Double]
  13. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  14. val displaySide: Axis.DisplaySide.Value
    Definition Classes
    NumericAxisAxis
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def fromPixelFunc(pmin: Double, pmax: Double, dataMin: ⇒ Double, dataMax: ⇒ Double): (Double) ⇒ Double
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. def isDrawn: Boolean
    Definition Classes
    NumericAxisAxis
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. val key: String
  21. def max(newMax: Double): NumericAxis

    Shortened alias for updatedMax.

    Shortened alias for updatedMax.

    newMax

    New fixed maximum value.

    returns

    The modified axis.

  22. val max: Option[Double]
  23. def maxSide: NumericAxis

    Returns a modifed axis that displays on the maximum side of the graph (left or bottom).

    Returns a modifed axis that displays on the maximum side of the graph (left or bottom). Note that this method does not change the rotation angle of the labels.

    returns

    the modified axis.

  24. def min(newMin: Double): NumericAxis

    Shortened alias for updatedMin.

    Shortened alias for updatedMin.

    newMin

    New fixed minimum value.

    returns

    The modified axis.

  25. val min: Option[Double]
  26. def minSide: NumericAxis

    Returns a modifed axis that displays on the minimum side of the graph (left or bottom).

    Returns a modifed axis that displays on the minimum side of the graph (left or bottom). Note that this method does not change the rotation angle of the labels.

    returns

    the modified axis.

  27. val name: Option[NameSettings]
    Definition Classes
    NumericAxisAxis
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  31. def numberFormat(f: String): NumericAxis

    Alias for updatedNumberFormat.

    Alias for updatedNumberFormat.

    f

    The new format string.

    returns

    The modified axis.

  32. def renderInfo(pmin: Double, pmax: Double, dataMin: ⇒ Double, dataMax: ⇒ Double, orient: Axis.RenderOrientation.Value, r: Renderer, bounds: Seq[Bounds]): (UnitConverter, Double, Double, AxisRenderer)
  33. def scaleStyle(newStyle: Axis.ScaleStyle.Value): NumericAxis

    Alias for updatedScaleStyle.

    Alias for updatedScaleStyle.

    newStyle

    The new scale style.

    returns

    The modified axis.

  34. def spacing(space: Double): NumericAxis

    Alias for updatedTickSpacing.

    Alias for updatedTickSpacing.

    space

    The new spacing between ticks.

    returns

    The modified axis.

  35. val style: Axis.ScaleStyle.Value
  36. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  37. val tickLabelInfo: Option[LabelSettings]
  38. val tickSpacing: Option[Double]
  39. val tickStyle: Axis.TickStyle.Value
  40. def ticks(tstyle: Axis.TickStyle.Value): NumericAxis

    Alias for updatedTickStyle.

    Alias for updatedTickStyle.

    tstyle

    The new tick style.

    returns

    The modified axis.

  41. def toPixelFunc(pmin: Double, pmax: Double, amin: Double, amax: Double): (Double) ⇒ Double
  42. def updatedLabelAngle(newAngle: Double): NumericAxis

    Gives back a modified axis with the angle on the labels set to the given value.

    Gives back a modified axis with the angle on the labels set to the given value. If the label setting had been empty, a new one with defaults for other values will be created.

    newAngle

    The new value for the angle of rotation for the tick lables.

    returns

    The modified axis.

  43. def updatedMax(newMax: Double): NumericAxis

    Gives back a new axis with a fixed maximum value.

    Gives back a new axis with a fixed maximum value.

    returns

    Modified axis.

  44. def updatedMin(newMin: Double): NumericAxis

    Gives back a new axis with a fixed minimum value.

    Gives back a new axis with a fixed minimum value.

    newMin

    New fixed minimum value.

    returns

    Modified axis.

  45. def updatedName(newName: String): NumericAxis

    Gives back a modified axis with the specified name.

    Gives back a modified axis with the specified name. If the name setting had been empty, a new one with defaults for other values will be created.

    newName

    The new string to use for the name of the axis.

    returns

    The modified axis.

  46. def updatedNumberFormat(f: String): NumericAxis

    Gives back a modified axis with the specified number format.

    Gives back a modified axis with the specified number format. If the label setting had been empty, a new one with defaults for other values will be created.

    f

    The new format string. This uses the format method in java.lang.String which takes roughly C-style format strings.

    returns

    Modified axis.

  47. def updatedScaleStyle(newStyle: Axis.ScaleStyle.Value): NumericAxis

    Gives back a modified axis with the specified scale style.

    Gives back a modified axis with the specified scale style.

    newStyle

    The new scale style.

    returns

    Modified axis.

  48. def updatedTickSpacing(space: Double): NumericAxis

    Gives back an updated axis with the specified spacing between tick marks.

    Gives back an updated axis with the specified spacing between tick marks.

    space

    New spacing between tick marks.

    returns

    Modified axis.

  49. def updatedTickStyle(tickStyle: Axis.TickStyle.Value): NumericAxis

    Gives back a modified axis with the specified tick style.

    Gives back a modified axis with the specified tick style.

    tickStyle

    The new tick style.

    returns

    The modified axis.

  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  52. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Axis

Inherited from AnyRef

Inherited from Any

Ungrouped