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.
- Alphabetic
- By Inheritance
- NumericAxis
- Serializable
- Serializable
- Product
- Equals
- Axis
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- 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
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
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.
-
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.
-
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.
-
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.
-
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.
-
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.
-
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.
- def calcTickLocations(amin: Double, amax: Double): Seq[Double]
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
val
displaySide: Axis.DisplaySide.Value
- Definition Classes
- NumericAxis → Axis
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def fromPixelFunc(pmin: Double, pmax: Double, dataMin: ⇒ Double, dataMax: ⇒ Double): (Double) ⇒ Double
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
isDrawn: Boolean
- Definition Classes
- NumericAxis → Axis
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val key: String
-
def
max(newMax: Double): NumericAxis
Shortened alias for updatedMax.
Shortened alias for updatedMax.
- newMax
New fixed maximum value.
- returns
The modified axis.
- val max: Option[Double]
-
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.
-
def
min(newMin: Double): NumericAxis
Shortened alias for updatedMin.
Shortened alias for updatedMin.
- newMin
New fixed minimum value.
- returns
The modified axis.
- val min: Option[Double]
-
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.
-
val
name: Option[NameSettings]
- Definition Classes
- NumericAxis → Axis
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
numberFormat(f: String): NumericAxis
Alias for updatedNumberFormat.
Alias for updatedNumberFormat.
- f
The new format string.
- returns
The modified axis.
- def renderInfo(pmin: Double, pmax: Double, dataMin: ⇒ Double, dataMax: ⇒ Double, orient: Axis.RenderOrientation.Value, r: Renderer, bounds: Seq[Bounds]): (UnitConverter, Double, Double, AxisRenderer)
-
def
scaleStyle(newStyle: Axis.ScaleStyle.Value): NumericAxis
Alias for updatedScaleStyle.
Alias for updatedScaleStyle.
- newStyle
The new scale style.
- returns
The modified axis.
-
def
spacing(space: Double): NumericAxis
Alias for updatedTickSpacing.
Alias for updatedTickSpacing.
- space
The new spacing between ticks.
- returns
The modified axis.
- val style: Axis.ScaleStyle.Value
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val tickLabelInfo: Option[LabelSettings]
- val tickSpacing: Option[Double]
- val tickStyle: Axis.TickStyle.Value
-
def
ticks(tstyle: Axis.TickStyle.Value): NumericAxis
Alias for updatedTickStyle.
Alias for updatedTickStyle.
- tstyle
The new tick style.
- returns
The modified axis.
- def toPixelFunc(pmin: Double, pmax: Double, amin: Double, amax: Double): (Double) ⇒ Double
-
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.
-
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.
-
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.
-
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.
-
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.
-
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.
-
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.
-
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.
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )