case class Plot(texts: Map[String, TextData] = Map.empty, grids: Map[String, GridData] = Map.empty, legends: Seq[PlotLegend] = Seq.empty) extends Product with Serializable

This class represents the full concept of a plot in SwiftVis2. It contains maps of the various types of elements that can go into plots with unique identifying names.

Note that both PlotTextData and PlotGridData include Bounds for where the elements should appear. This allows the user to place multiple plots with separate axes or multiple labels. Text is drawn after all plot grids so it will appear on top of them.

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

Instance Constructors

  1. new Plot(texts: Map[String, TextData] = Map.empty, grids: Map[String, GridData] = Map.empty, legends: Seq[PlotLegend] = Seq.empty)

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  8. val grids: Map[String, GridData]
  9. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  10. val legends: Seq[PlotLegend]
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def render(r: Renderer, bounds: Bounds): Unit

    Draws this plot to a renderer scaled to the specified Bounds.

    Draws this plot to a renderer scaled to the specified Bounds.

    r

    The Renderer to draw to.

    bounds

    The fractional bounding box in that Renderer to draw this plot to.

  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. val texts: Map[String, TextData]
  17. def updatedAxis[A <: Axis](axisName: String, f: (A) ⇒ A, gridName: String = "Main"): Plot

    Generate a new plot with an updated axis.

  18. def updatedGrid(f: (GridData) ⇒ GridData, gridName: String = "Main"): Plot

    Generate a new plot with an updated grid data.

  19. def updatedGridBounds(f: (Bounds) ⇒ Bounds, gridName: String = "Main"): Plot

    Generate a new plot with an updated bounds for a grid.

  20. def updatedStyle[A <: PlotStyle](f: (A) ⇒ A, gridName: String = "Main", row: Int = 0, col: Int = 0, stack: Int = 0): Plot

    Generate a new plot with an updated plot style.

  21. def updatedStyleXAxis(axisName: String, row: Int = 0, col: Int = 0, stack: Int = 0, gridName: String = "Main"): Plot
  22. def updatedText(f: (TextData) ⇒ TextData, name: String = "Title"): Plot

    Generate a new plot with an updated TextData.

  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def withAxis(axisName: String, axis: Axis, gridName: String = "Main"): Plot
  27. def withModifiedAxis[A <: Axis](currentAxisName: String, newAxisName: String, f: (A) ⇒ A, gridName: String = "Main"): Plot
  28. def withText(name: String, text: PlotText, bounds: Bounds): Plot

    Generate a new plot with the added text and bounds.

  29. def withText(name: String, textData: TextData): Plot

    Generates a new Plot with the added TextData.

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 AnyRef

Inherited from Any

Ungrouped