Uses of Class
fern.tools.gnuplot.Axes

Packages that use Axes
fern.tools.gnuplot Provides classes to use gnuplot from java. 
 

Uses of Axes in fern.tools.gnuplot
 

Subclasses of Axes in fern.tools.gnuplot
 class ArrayMatrixAxes
          Implementation of Axes to use with array matrixes of any number type (the type of the arrays is inferred by using the reflection api).
 class CollectionAxes
          Implementation of Axes to use with Collections or Iterables of any number type or array of numbers (the type of the collection is inferred by using the reflection api).
 class TransposedArrayMatrixAxes
          Implementation of Axes to use with transposed array matrixes of any number type (the type of the arrays is inferred by using the reflection api).
 

Methods in fern.tools.gnuplot that return Axes
 Axes GnuPlot.addData(Axes axes)
          Adds data in order to plot it.
 Axes GnuPlot.addData(Collection col, String[] dataLabels, String[] styles)
          Adds data in order to plot it.
 Axes GnuPlot.addData(Object[] arr, boolean transposed, String[] dataLabels, String[] styles)
          Adds data in order to plot it.
 Axes GnuPlot.addData(Object arr, String[] dataLabels, String[] styles)
          Adds data in order to plot it.
 

Methods in fern.tools.gnuplot that return types with arguments of type Axes
 List<Axes> GnuPlot.getAxes()
          Returns the Axes object containing the data, labels and styles.
 

Methods in fern.tools.gnuplot with parameters of type Axes
 void Axes.addAxes(Axes axes)
          Attaches an Axes object to this one.
 Axes GnuPlot.addData(Axes axes)
          Adds data in order to plot it.