Plotting
Interface Histogram

All Superinterfaces:
PlotBase
All Known Implementing Classes:
TwoDPlotter

public interface Histogram
extends PlotBase

Two dimensional histogram plot interface.

This interface extends the base interface PlotBase and contains histogram related plotting APIs.

Since:
1.0
See Also:
TwoDPlotter, PlotBase

Method Summary
 void SetMajorXTickSpacing(float delta)
           
 void SetMajorYTickSpacing(float delta)
           
 void SetMinorXTickSpacing(float delta)
           
 void SetMinorYTickSpacing(float delta)
           
 void SetNegativeRectColor(java.awt.Color col)
          Set the color of negative valued bar.
 void SetPositiveRectColor(java.awt.Color col)
          Set the color of positive valued bar.
 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

SetPositiveRectColor

void SetPositiveRectColor(java.awt.Color col)
Set the color of positive valued bar.


SetNegativeRectColor

void SetNegativeRectColor(java.awt.Color col)
Set the color of negative valued bar.


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)