Plot

class Plot()

Maintains a set of series (or more strictly, the data from those series) and the necessary JFreeChart stuff to plot them.

Companion
object
class Object
trait Matchable
class Any

Value members

Concrete methods

def ++=(pl: IterableOnce[Series]): Plot
def +=(pl: Series): Plot
def +=(nameSeries: (String, Series)): Plot
def legend: Boolean
def legend_=(show: Boolean): Unit
def listen(l: Listener): Unit
def logScaleX: Boolean
def logScaleX_=(value: Boolean): Unit
def logScaleY: Boolean
def logScaleY_=(value: Boolean): Unit
def refresh(): Unit
def title: String
def title_=(str: String): Unit

The plot title

The plot title

def unlisten(l: Listener): Unit
def xaxis: NumberAxis
def xlabel: String
def xlabel_=(label: String): Unit
def xlim: (Double, Double)
def xlim(lower: Double, upper: Double): Unit

Sets the lower and upper bounds of the current plot.

Sets the lower and upper bounds of the current plot.

def xlim_=(lowerUpper: (Double, Double)): Unit
def yaxis: NumberAxis
def ylabel: String
def ylabel_=(label: String): Unit
def ylim: (Double, Double)
def ylim(lower: Double, upper: Double): Unit
def ylim_=(lowerUpper: (Double, Double)): Unit

Concrete fields

lazy val chart: JFreeChart

The JFreeChart for this plot

The JFreeChart for this plot

lazy val panel: ChartPanel

The ChartPanel for this plot

The ChartPanel for this plot

lazy val plot: XYPlot

The JFreeChart plot object.

The JFreeChart plot object.