jigcell.compare.plotter
Class IPlotter.Combine

java.lang.Object
  extended by jigcell.compare.plotter.IPlotter.Combine
Enclosing interface:
IPlotter

public static final class IPlotter.Combine
extends java.lang.Object

The types of series combine options.


Field Summary
static IPlotter.Combine ACROSS
          Combine across series option.
private  java.lang.String name
          Name of this option
static IPlotter.Combine NONE
          No series combining option.
 
Constructor Summary
private IPlotter.Combine(java.lang.String name)
          Creates a new combine option.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

ACROSS

public static final IPlotter.Combine ACROSS
Combine across series option. In this mode, the data is expected to contain all of the x values in the first series, all of the y1 values in the second series, all of the y2 values in the third series, and so on.


NONE

public static final IPlotter.Combine NONE
No series combining option. In this mode, the data is expected to contain a list of series. A series has an x and y coordinate for each point.


name

private final java.lang.String name
Name of this option

Constructor Detail

IPlotter.Combine

private IPlotter.Combine(java.lang.String name)
Creates a new combine option.

Parameters:
name - Display name
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object