Packages

trait AxesImplicits extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AxesImplicits
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val plot: Plot
    Attributes
    protected

Concrete 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 clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  6. def continuousAxis(boundsFn: (Plot) ⇒ Bounds, position: Position, tickCount: Option[Int] = None, tickRenderer: Option[TickRenderer] = None, labelFormatter: Option[(Double) ⇒ String] = None, tickCountRange: Option[Seq[Int]] = None, updatePlotBounds: Boolean = true)(implicit theme: Theme): Plot

    Add a continuous axis to the plot.

    Add a continuous axis to the plot.

    boundsFn

    Takes a plot and returns the bounds this axis will display.

    position

    The side of the plot to add the axis.

    tickCount

    The number of tick lines.

    tickRenderer

    Function to draw a tick line/label.

    labelFormatter

    Custom function to format tick labels.

    tickCountRange

    Allow searching over axis labels with this many ticks.

    updatePlotBounds

    Set plot bounds to match the axis bounds.

  7. def discreteAxis(labels: Seq[String], values: Seq[Double], position: Position, updatePlotBounds: Boolean = true, tickRenderer: Option[TickRenderer] = None, align: Double = 0.5)(implicit theme: Theme): Plot

    Add a discrete axis to the plot.

    Add a discrete axis to the plot.

    labels

    The labels.

    values

    The X value for each label.

    position

    The side of the plot to add the axis.

    updatePlotBounds

    Set plot bounds to match the axis bounds.

    tickRenderer

    Function to draw a tick line/label.

    align

    Where to align ticks as a proportion of their band, e.g. 0 = left, 0.5 = center.

  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  16. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. def xAxis(labels: Seq[String], values: Seq[Double], position: Position)(implicit theme: Theme): Plot

    Add an X axis to the plot.

    Add an X axis to the plot.

    labels

    The labels.

    values

    The X value for each label.

    position

    The side of the plot to add the axis.

  22. def xAxis(labels: Seq[String], values: Seq[Double])(implicit theme: Theme): Plot

    Add an X axis to the plot.

    Add an X axis to the plot.

    labels

    The labels.

    values

    The X value for each label.

  23. def xAxis(labels: Seq[String], position: Position)(implicit theme: Theme): Plot

    Add an X axis to the plot

    Add an X axis to the plot

    labels

    The labels. The x values are assumed to start at 0 and increment by one for each label.

    position

    The side of the plot to add the axis.

  24. def xAxis(labels: Seq[String])(implicit theme: Theme): Plot

    Add an X axis to the plot

    Add an X axis to the plot

    labels

    The labels. The x values are assumed to start at 0 and increment by one for each label.

  25. def xAxis(tickCount: Option[Int] = None, tickRenderer: Option[TickRenderer] = None, labelFormatter: Option[(Double) ⇒ String] = None, tickCountRange: Option[Seq[Int]] = None, position: Position = Position.Bottom)(implicit theme: Theme): Plot

    Add an X axis to the plot.

    Add an X axis to the plot.

    tickCount

    The number of tick lines.

    tickRenderer

    Function to draw a tick line/label.

    labelFormatter

    Custom function to format tick labels.

    tickCountRange

    Allow searching over axis labels with this many ticks.

    position

    The side of the plot to add the axis.

  26. def xGrid(lineCount: Option[Int] = None, lineRenderer: Option[GridLineRenderer] = None, tickCountRange: Option[Seq[Int]] = None)(implicit theme: Theme): Plot

    Add x grid lines to the plot.

    Add x grid lines to the plot.

    lineCount

    the number of grid lines to use

    lineRenderer

    the grid line renderer

  27. def yAxis(labels: Seq[String], values: Seq[Double], position: Position)(implicit theme: Theme): Plot

    Add a Y axis to the plot.

    Add a Y axis to the plot.

    labels

    The labels.

    values

    The Y value for each label.

    position

    The side of the plot to add the axis.

  28. def yAxis(labels: Seq[String], values: Seq[Double])(implicit theme: Theme): Plot

    Add a Y axis to the plot.

    Add a Y axis to the plot.

    labels

    The labels.

    values

    The Y value for each label.

  29. def yAxis(labels: Seq[String], position: Position)(implicit theme: Theme): Plot

    Add a Y axis to the plot.

    Add a Y axis to the plot.

    labels

    The label. The y values are assumed to start at 0 and increment by one for each label.

    position

    The side of the plot to add the axis.

  30. def yAxis(labels: Seq[String])(implicit theme: Theme): Plot

    Add a Y axis to the plot.

    Add a Y axis to the plot.

    labels

    The label. The y values are assumed to start at 0 and increment by one for each label.

  31. def yAxis(tickCount: Option[Int] = None, tickRenderer: Option[TickRenderer] = None, labelFormatter: Option[(Double) ⇒ String] = None, tickCountRange: Option[Seq[Int]] = None, position: Position = Position.Left)(implicit theme: Theme): Plot

    Add a Y axis to the plot.

    Add a Y axis to the plot.

    tickCount

    The number of tick lines.

    tickRenderer

    Function to draw a tick line/label.

    labelFormatter

    Custom function to format tick labels.

    tickCountRange

    Allow searching over axis labels with this many ticks.

    position

    The side of the plot to add the axis.

  32. def yGrid(lineCount: Option[Int] = None, lineRenderer: Option[GridLineRenderer] = None, tickCountRange: Option[Seq[Int]] = None)(implicit theme: Theme): Plot

    Add y grid lines to the plot.

    Add y grid lines to the plot.

    lineCount

    the number of grid lines to use

    lineRenderer

    the grid line renderer

Deprecated Value Members

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

Inherited from AnyRef

Inherited from Any

Ungrouped