Uses of Class
com.quinncurtis.chart2djava.ChartPlot

Packages that use ChartPlot
com.quinncurtis.chart2djava   
com.quinncurtis.spcchartjava   
 

Uses of ChartPlot in com.quinncurtis.chart2djava
 

Subclasses of ChartPlot in com.quinncurtis.chart2djava
 class ArrowPlot
          The ArrowPlot class displays a collection of arrows as defined by the data in a group dataset.
 class BubblePlot
          The BubblePlot class extends the GroupPlot class and displays bubble plots.
 class CandlestickPlot
          The CandlestickPlot class extends the GroupPlot class and displays stock market data in an open-high-low-close format common in financial technical analysis.
 class CellPlot
          The CellPlot class extends the GroupPlot class and displays cell plots.
 class ContourPlot
          The ContourPlot class extends the ChartPlot class and displays contour datasets in contour plot format.
 class ErrorBarPlot
          The ErrorBarPlot class extends the GroupPlot class and displays error bars.
 class FloatingBarPlot
          The FloatingBarPlot class extends the GroupPlot class and displays floating bars.
 class GroupBarPlot
          The GroupBarPlot class extends the GroupPlot class and displays data in group bar format.
 class GroupPlot
          The GroupPlot class is the abstract base class for the plot types that use group (multiple y-values for each x-value) data.
 class HistogramPlot
          The HistogramPlot class extends the GroupPlot class and displays histogram plots.
 class LineGapPlot
          The LineGapPlot class extends the GroupPlot class and i displays a line gap chart.
 class MultiLinePlot
          The MultiLinePlot class extends the GroupPlot class and displays group data in multi-line format.
 class OHLCPlot
          The OHLCPlot class extends the GroupPlot class and displays stock market data in an open-high-low-close format common in financial technical analysis.
 class PieChart
          The PieChart class extends the Plot class and displays pie charts.
 class PolarLinePlot
          The PolarLinePlot class extends the PolarPlot class and displays polar plot data in a simple line plot format.
 class PolarPlot
          The PolarPlot is the abstract base class of the plot types that use polar data.
 class PolarScatterPlot
          The PolarScatterPlot class extends the PolarPlot class and displays polar plot data in a simple scatter plot format.
 class SimpleBarPlot
          The SimpleBarPlot class extends the SimplePlot class and displays data in a bar format.
 class SimpleLineMarkerPlot
          The SimpleLineMarkerPlot class extends the SimplePlot class and displays simple datasets in a line plot format where individual data points can be highlighted with scatter plot symbols.
 class SimpleLinePlot
          The SimpleLinePlot class extends the SimplePlot class and displays simple datasets in line plot format.
 class SimplePlot
          The SimplePlot manages and displays all of the plot types that use simple (one y-value for each x-value) data.
 class SimpleScatterPlot
          The SimpleScatterPlot class extends the SimplePlot class and displays simple datasets in scatter plot format where each data point is represented using a symbol.
 class StackedBarPlot
          The StackedBarPlot class extends the GroupPlot class and displays data in stacked bar format.
 class StackedLinePlot
          The StackedLinePlot class extends the GroupPlot class and displays data in stacked line format.
 

Methods in com.quinncurtis.chart2djava that return ChartPlot
 ChartPlot MoveData.findObj(ChartPoint2D testpoint)
          This method finds the moveable plot object nearest the test point.
 ChartPlot DataToolTip.findObj(ChartPoint2D testpoint)
          This method finds the plot object nearest the test point.
 ChartPlot DataToolTip.getSelectedPlotObj()
          In the mousePressed event, this function will return the selected plot object.
 

Methods in com.quinncurtis.chart2djava with parameters of type ChartPlot
 int StandardLegend.addLegendItem(java.lang.String stext, ChartPlot chartobj, int ngroup, java.awt.Font thefont)
          Add a legend item to the current legend, specifying the legend item text, symbol, the associated PlotObj object, the group number of the attributes to copy in the PlotObject, and font.
 int StandardLegend.addLegendItem(java.lang.String stext, int nsymbol, ChartPlot chartobj, int ngroup, java.awt.Font thefont)
          Add a legend item to the current legend, specifying the legend item text, symbol, the associated PlotObj object, the group number of the attributes to copy in the PlotObject, and font.
 void ChartPlot.copy(ChartPlot source)
          Copies the source plot object.
 void BarDatapointValue.initBarDatapointValue(NumericLabel numlabel, ChartPlot plotobj, ChartPoint2D datapointloc, ChartRectangle2D barrect)
          This method initializes the BarDatapointValue object.
static boolean ChartSupport.isStackedPlotType(ChartPlot plotobj)
          This method returns true if a plot object is one of the stacked (STACKEDBAR or STACKEDLINE) chart types.
 

Constructors in com.quinncurtis.chart2djava with parameters of type ChartPlot
BarDatapointValue(NumericLabel numlabel, ChartPlot plotobj, ChartPoint2D datapointloc, ChartRectangle2D barrect)
          This constructor creates a new BarDatapointValue object of a specified type, and scales it to match the specified minimum and maximum values.
ChartAttribute(ChartPlot source, int ngroup)
           This constructor creates a new ChartAttribute object as a copy of the ChartAttribute object associated with a specific group in an DChartPlot object.
LegendItem(PhysicalCoordinates transform, java.lang.String stext, ChartPlot chartobj, int ngroup, java.awt.Font thefont)
          an LegendItem constructor creates a new object based on the source chart scale, a text string, a symbol value, an GraphObj object, a group number, and an explicit font.
LegendItem(PhysicalCoordinates transform, java.lang.String stext, int nsymbol, ChartPlot chartobj, int ngroup, java.awt.Font thefont)
          an LegendItem constructor creates a new object based on the source chart scale, a text string, a symbol value, an GraphObj object, a group number, and an explicit font.
 

Uses of ChartPlot in com.quinncurtis.spcchartjava
 

Subclasses of ChartPlot in com.quinncurtis.spcchartjava
 class SimpleMultiPlot
          This class creates a plot object that can be a line plot, bar plot, scatter plot or a line marker plot.