Plotting
Interface TwoDPlot

All Superinterfaces:
PlotBase
All Known Implementing Classes:
TwoDPlotter

public interface TwoDPlot
extends PlotBase

Two dimensional plot interface.

This interface extends the base interface PlotBase and contains all the user accessible plotting APIs.

Since:
1.0
See Also:
TwoDPlotter, ThreeDPlotter

Method Summary
 void SetConnectionType(ConnectionType connType)
           
 void SetLineType(LineType lineType)
           
 void SetLineWidth(int width)
           
 void SetMajorXTickSpacing(float delta)
           
 void SetMajorYTickSpacing(float delta)
           
 void SetMinorXTickSpacing(float delta)
           
 void SetMinorYTickSpacing(float delta)
           
 void SetXRange(float min, float max)
           
 void SetYRange(float min, float max)
           
 void ShowXMajorTicks(boolean showXTicks)
           
 void ShowXMinorTicks(boolean showXTicks)
           
 void ShowYMajorTicks(boolean showYTicks)
           
 void ShowYMinorTicks(boolean showYTicks)
           
 
Methods inherited from interface Plotting.PlotBase
DeleteAllData, GetSize, HighlightDataPoints, SetAutoFitOn, SetBGColor, SetLegendBoxXCorner, SetLegendBoxYCorner, SetPlotSize, ShowGrid, ShowLegend
 

Method Detail

SetXRange

void SetXRange(float min,
               float max)

SetYRange

void SetYRange(float min,
               float max)

ShowXMajorTicks

void ShowXMajorTicks(boolean showXTicks)

ShowYMajorTicks

void ShowYMajorTicks(boolean showYTicks)

ShowXMinorTicks

void ShowXMinorTicks(boolean showXTicks)

ShowYMinorTicks

void ShowYMinorTicks(boolean showYTicks)

SetMajorXTickSpacing

void SetMajorXTickSpacing(float delta)

SetMajorYTickSpacing

void SetMajorYTickSpacing(float delta)

SetMinorXTickSpacing

void SetMinorXTickSpacing(float delta)

SetMinorYTickSpacing

void SetMinorYTickSpacing(float delta)

SetLineType

void SetLineType(LineType lineType)

SetConnectionType

void SetConnectionType(ConnectionType connType)

SetLineWidth

void SetLineWidth(int width)