PlotGrid

class PlotGrid

Types

PlotCell
Link copied to clipboard
data class PlotCell(id: String, plot: Plot, row: Int, col: Int, width: Int)

Functions

get
Link copied to clipboard
operator fun get(id: String): PlotGrid.PlotCell?
plot
Link copied to clipboard
fun plot(row: Int? = null, col: Int? = null, id: String? = null, width: Int = 6, block: Plot.() -> Unit): Plot
fun plot(plot: Plot, id: String = plot.toString(), width: Int = 6, row: Int? = null, col: Int? = null): Plot

Properties

grid
Link copied to clipboard
val grid: List<List<PlotGrid.PlotCell>>