case class PlotGrid(plots: Seq[Seq[Seq[Plot2D]]], axes: Map[String, Axis], xWeights: Seq[Double], yWeights: Seq[Double], axisFrac: Double = 0.15) extends Plottable with Product with Serializable

This is the primary plotting element in SwiftVis2. It represents a grid of plots with axes that can surround the edges. Each region in the PlotGrid can hold multiple plots so the data for the plots is given by a Seq[Seq[Seq[Plot2D]]]. The first index is for the row, the second is the column, and the third is a stack of plots drawn at that location. The axes associated with plots are in the Plot2D type by name, which should match up with the Map[String, Axis] passed into this.

Each row and column can be a different size. The sizes are determined by the xWeights and yWeights arguments. Larger values get more space. The amount of space given to each row/column is determined by its contribution to the sum of the weights. If all the weights are the same, the rows/columns will be uniform in size.

The axisFrac argument tells what fraction of the plotting region should be given to the axes. The actual space given to the axes is this fraction times the smaller value of the width or height. Font sizes for axis labels are adjusted to fit whatever size is given here.

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

Instance Constructors

  1. new PlotGrid(plots: Seq[Seq[Seq[Plot2D]]], axes: Map[String, Axis], xWeights: Seq[Double], yWeights: Seq[Double], axisFrac: Double = 0.15)

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. val axes: Map[String, Axis]
  6. val axisFrac: Double
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  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. val plots: Seq[Seq[Seq[Plot2D]]]
  15. def render(r: Renderer, bounds: Bounds): Unit

    Renders this grid to the specified Renderer inside of the specified bounds.

    Renders this grid to the specified Renderer inside of the specified bounds.

    r

    The renderer to draw the plot to.

    bounds

    The bounds the grid should be rendered to.

    Definition Classes
    PlotGridPlottable
  16. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  17. def updatedStyle[A <: PlotStyle](f: (A) ⇒ A, row: Int = 0, col: Int = 0, stack: Int = 0): PlotGrid
  18. def updatedStyleXAxis(axisName: String, row: Int = 0, col: Int = 0, stack: Int = 0): PlotGrid
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. def withAxis(axisName: String, axis: Axis): PlotGrid
  23. def withColumn(col: Int = plots.head.length): PlotGrid
  24. def withModifiedAxis[A <: Axis](currentAxisName: String, newAxisName: String, f: (A) ⇒ A): PlotGrid
  25. def withRow(row: Int = plots.length): PlotGrid
  26. def withStyle(style: PlotStyle, row: Int = 0, col: Int = 0, stack: Int = 0): PlotGrid
  27. val xWeights: Seq[Double]
  28. val yWeights: Seq[Double]

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 Plottable

Inherited from AnyRef

Inherited from Any

Ungrouped