Packages

case class Plot(display: Option[String], left: Int = 0, top: Int = 0, right: Int = 5, bottom: Int = 5, xAxis: Option[String] = None, yAxis: Option[String] = None, xmin: Double = 0, xmax: Double = 0, ymin: Double = 0, ymax: Double = 0, autoPlotOn: Boolean = true, legendOn: Boolean = false, setupCode: String = "", updateCode: String = "", pens: List[Pen] = Nil) extends Widget with Product with Serializable

Source
Plot.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Plot
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Widget
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Plot(display: Option[String], left: Int = 0, top: Int = 0, right: Int = 5, bottom: Int = 5, xAxis: Option[String] = None, yAxis: Option[String] = None, xmin: Double = 0, xmax: Double = 0, ymin: Double = 0, ymax: Double = 0, autoPlotOn: Boolean = true, legendOn: Boolean = false, setupCode: String = "", updateCode: String = "", pens: List[Pen] = Nil)

Value Members

  1. val autoPlotOn: Boolean
  2. val bottom: Int
    Definition Classes
    PlotWidget
  3. def convertSource(conversion: (String) ⇒ String): Plot

    convertSource applies the given conversion to all code found in the widget.

    convertSource applies the given conversion to all code found in the widget.

    Definition Classes
    PlotWidget
  4. val display: Option[String]
  5. val left: Int
    Definition Classes
    PlotWidget
  6. val legendOn: Boolean
  7. val pens: List[Pen]
  8. val right: Int
    Definition Classes
    PlotWidget
  9. val setupCode: String
  10. val top: Int
    Definition Classes
    PlotWidget
  11. val updateCode: String
  12. val xAxis: Option[String]
  13. val xmax: Double
  14. val xmin: Double
  15. val yAxis: Option[String]
  16. val ymax: Double
  17. val ymin: Double