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: Series): Plot
def +=(nameSeries: (String, Series)): Plot
def legend_=(show: Boolean): Unit
def logScaleX_=(value: Boolean): Unit
def logScaleY_=(value: Boolean): Unit
def refresh(): Unit
def title_=(str: String): Unit

The plot title

The plot title

def xlabel: String
def xlabel_=(label: String): Unit
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 ylabel: String
def ylabel_=(label: String): Unit
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.