Plotting
Interface PlotBase

All Known Subinterfaces:
Histogram, ThreeDPlot, TwoDPlot
All Known Implementing Classes:
ThreeDPlotter, TwoDPlotter

public interface PlotBase

Base interface for two D and three D plots.

This interface serves as the base interface for two and three D plots

Since:
1.0
See Also:
TwoDPlot, ThreeDPlot

Method Summary
 void DeleteAllData()
           
 java.awt.Dimension GetSize()
           
 void HighlightDataPoints(boolean toHighlight)
           
 void SetAutoFitOn(boolean on)
           
 void SetBGColor(java.awt.Color color)
           
 void SetLegendBoxXCorner(int xcorner)
           
 void SetLegendBoxYCorner(int ycorner)
           
 void SetPlotSize(int xPixelNum, int yPixelNum)
           
 void ShowGrid(boolean gridVisible)
           
 void ShowLegend(boolean legendOn)
           
 

Method Detail

SetPlotSize

void SetPlotSize(int xPixelNum,
                 int yPixelNum)

GetSize

java.awt.Dimension GetSize()

DeleteAllData

void DeleteAllData()

ShowLegend

void ShowLegend(boolean legendOn)

SetLegendBoxXCorner

void SetLegendBoxXCorner(int xcorner)

SetLegendBoxYCorner

void SetLegendBoxYCorner(int ycorner)

ShowGrid

void ShowGrid(boolean gridVisible)

SetBGColor

void SetBGColor(java.awt.Color color)

HighlightDataPoints

void HighlightDataPoints(boolean toHighlight)

SetAutoFitOn

void SetAutoFitOn(boolean on)