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.
- Alphabetic
- By Inheritance
- Plot
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new Plot(texts: Map[String, TextData] = Map.empty, grids: Map[String, GridData] = Map.empty, legends: Seq[PlotLegend] = Seq.empty)
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
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val grids: Map[String, GridData]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val legends: Seq[PlotLegend]
-
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
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.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val texts: Map[String, TextData]
-
def
updatedAxis[A <: Axis](axisName: String, f: (A) ⇒ A, gridName: String = "Main"): Plot
Generate a new plot with an updated axis.
-
def
updatedGrid(f: (GridData) ⇒ GridData, gridName: String = "Main"): Plot
Generate a new plot with an updated grid data.
-
def
updatedGridBounds(f: (Bounds) ⇒ Bounds, gridName: String = "Main"): Plot
Generate a new plot with an updated bounds for a grid.
-
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.
- def updatedStyleXAxis(axisName: String, row: Int = 0, col: Int = 0, stack: Int = 0, gridName: String = "Main"): Plot
-
def
updatedText(f: (TextData) ⇒ TextData, name: String = "Title"): Plot
Generate a new plot with an updated TextData.
-
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( ... )
- def withAxis(axisName: String, axis: Axis, gridName: String = "Main"): Plot
- def withModifiedAxis[A <: Axis](currentAxisName: String, newAxisName: String, f: (A) ⇒ A, gridName: String = "Main"): Plot
-
def
withText(name: String, text: PlotText, bounds: Bounds): Plot
Generate a new plot with the added text and bounds.
-
def
withText(name: String, textData: TextData): Plot
Generates a new Plot with the added TextData.