LiveGraph
data visualisation and analysis framework

org.LiveGraph.settings
Class DataSeriesSettings.SeriesParameters

java.lang.Object
  extended by org.LiveGraph.settings.DataSeriesSettings.SeriesParameters
Enclosing class:
DataSeriesSettings

private static class DataSeriesSettings.SeriesParameters
extends java.lang.Object

This struct-class is used to group the settings for one data series in a single data structure.


Field Summary
private  java.awt.Color colour
          Colour to use for this series.
private  double param
          Parameter for series' values transformation.
private  boolean show
          Whether this data series should be shown at all.
private  DataSeriesSettings.TransformMode transMode
          Transformation mode for series values.
 
Constructor Summary
private DataSeriesSettings.SeriesParameters()
          Creates an uninitialised series settings data structure.
private DataSeriesSettings.SeriesParameters(boolean show, java.awt.Color colour, DataSeriesSettings.TransformMode transMode, double param)
          Creates an series settings data structure and initialises it with the specified values.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

show

private boolean show
Whether this data series should be shown at all.


colour

private java.awt.Color colour
Colour to use for this series.


transMode

private DataSeriesSettings.TransformMode transMode
Transformation mode for series values.


param

private double param
Parameter for series' values transformation.

Constructor Detail

DataSeriesSettings.SeriesParameters

private DataSeriesSettings.SeriesParameters()
Creates an uninitialised series settings data structure.


DataSeriesSettings.SeriesParameters

private DataSeriesSettings.SeriesParameters(boolean show,
                                            java.awt.Color colour,
                                            DataSeriesSettings.TransformMode transMode,
                                            double param)
Creates an series settings data structure and initialises it with the specified values.

Parameters:
show - Display?
colour - Line colour.
transMode - Values transformation.
param - Transformation parameter.

LiveGraph
data visualisation and analysis framework